-
Fundamentals Capstone 2.1
Hi,
I need help with ex2.1 for the fundamental capstone project
**2.1 In the `optRef` table, the `expiry` column is in a string format. Convert this into the kdb date format.**
My solution:
update expiry: $[“D”;expiry] from optRef
I cast within the sql query using UPDATE and cast from string to date using $[x;y] which works except that I cannot keep the changes in my optRef table as it is not updating.
Log in to reply.