Home › Forums › KX Academy › Fundamentals Capstone 2.1 › Re: Fundamentals Capstone 2.1
-
The update statement normally returns the modified table. If you want to save the result back to the in-memory table, you have two options:
- use an assignment statement to overwrite the table with the result
- pass the name of the table to update rather than its value
The second option is explained at QSQL query templates | Basics | kdb+ and q documentation – Kdb+ and q documentation (kx.com).