I have converted from Access to mysql. I am receiving an error with this sql statement which works fine in Access. I insert a record then I need to get the ID of that record.
SELECT @@IDENTITY;
Description=[TCX][MyODBC]You have an error in your SQL syntax near
'@IDENTITY' at line 1
What type of change do I need to make this work?
SELECT @@IDENTITY;
Description=[TCX][MyODBC]You have an error in your SQL syntax near
'@IDENTITY' at line 1
What type of change do I need to make this work?