Hi,
I am creating a Python function which contains a SQL string. When the function is loaded, the SQL table must be updated with the values from my program.
This is all done.
Though I'm stuck at the SQL string. How can i say that I want to update the last record ?
I heard about the LAST command, but it doesnt work with my MS SQL Enterprise manager.
Example:
UPDATE Table SET column = 123 WHERE LAST
I am creating a Python function which contains a SQL string. When the function is loaded, the SQL table must be updated with the values from my program.
This is all done.
Though I'm stuck at the SQL string. How can i say that I want to update the last record ?
I heard about the LAST command, but it doesnt work with my MS SQL Enterprise manager.
Example:
UPDATE Table SET column = 123 WHERE LAST
Comment