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?

link|improve this question

80% accept rate
feedback

6 Answers

up vote 12 down vote accepted

Semicolon at the end of the line.

INSERT INTO myTable (ID) values (5);
link|improve this answer
1  
It doesn' even have to be at the end of line, just at the end of the statement – soulmerge Apr 22 '09 at 14:44
feedback

The semicolon is the default delimiter. You can however redefine it to whatever you want with the DELIMITER keyword. From the MySQL manual:

mysql> delimiter //

mysql> CREATE PROCEDURE simpleproc (OUT param1 INT)
    -> BEGIN
    ->   SELECT COUNT(*) INTO param1 FROM t;
    -> END;
    -> //
Query OK, 0 rows affected (0.00 sec)

mysql> delimiter ;

mysql> CALL simpleproc(@a);
Query OK, 0 rows affected (0.00 sec)

This is not limited to stored procedure definitions of course.

link|improve this answer
feedback

Just a simple ;

so try

insert into myTable(ID) values (5);
select * from myTable;
link|improve this answer
feedback

Use a semicolon (;). It will separate your statements.

link|improve this answer
feedback

I think the problem is that GO is a batch terminator, not a statement terminator. After explicitly setting transactions, I got this code to execute without telling me that the procedure already exists. Without the transaction statements, I do get an error that the procedure already exists.

start transaction; drop procedure if exists usp_test; commit; start transaction; CREATE PROCEDURE usp_test() SELECT * from books; commit; call usp_test();

link|improve this answer
feedback

Note that there is nothing magical about the string "GO" in SQLServer isql/osql - it is just the default SQL statement terminator string, and is not a command itself. You can change it to be the semicolon when you start the client using the -c switch:

osql -c ';' other parameters
link|improve this answer
1  
This is not true, GO is the batch terminator. Try: SELECT 1; CREATE PROCEDURE dbo.Test AS SELECT 1 versus SELECT 1 GO CREATE PROCEDURE dbo.Test AS SELECT 1 – Tom H. Apr 18 '09 at 18:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.