Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I must convert some stored procedures from MS Sql Server to MySQL
and in Sql Server I have these two variables:
@@ERROR
@@IDENTITY
are there MySql similar global variables?
You may get last insert id by
select LAST_INSERT_ID();
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.