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);
1.4m articles
1.4m replys
5 comments
57.0k users