In TSQL I can state:
insert into myTable (ID) values (5) GO select * from myTable
In MySQL I can't write the same query.
What is the correct way to write this query in MySQL?
Semicolon at the end of the line.
INSERT INTO myTable (ID) values (5);
2.1m questions
2.1m answers
60 comments
57.0k users