I am getting the 1064 error creating a simple test sproc using this env:
Appl: MySQL Workbench 5.2.27 CE
DBMS: MySQL 5.1
OS: Windows7
Would appreciate it if you can shed some light. Thanks!
---- here's the code -----
DROP TABLE IF EXISTS mydb.address2 ;
CREATE TABLE IF NOT EXISTS mydb.address2 (
myId int
);
CREATE PROCEDURE mydb.spCreateNewAddress2()
BEGIN
select 'Hello World'
END; <<<<<------ error in RED
---- End of code -----
Appl: MySQL Workbench 5.2.27 CE
DBMS: MySQL 5.1
OS: Windows7
Would appreciate it if you can shed some light. Thanks!
---- here's the code -----
DROP TABLE IF EXISTS mydb.address2 ;
CREATE TABLE IF NOT EXISTS mydb.address2 (
myId int
);
CREATE PROCEDURE mydb.spCreateNewAddress2()
BEGIN
select 'Hello World'
END; <<<<<------ error in RED
---- End of code -----