Hello everyone,
Could someone tel me what is wrong with this stored procedure that I am trying to create in the MYSQL Administrator?
CREATE PROCEDURE `fjschema`.`sp_delete_tb_proprerty` (_id INTEGER)
BEGIN
DELETE `fjschema`.`tb_property`
WHERE ID = _id
END
I keep getting a 1064 error on line 4.
Any help would be appreciated.
Liam
Could someone tel me what is wrong with this stored procedure that I am trying to create in the MYSQL Administrator?
CREATE PROCEDURE `fjschema`.`sp_delete_tb_proprerty` (_id INTEGER)
BEGIN
DELETE `fjschema`.`tb_property`
WHERE ID = _id
END
I keep getting a 1064 error on line 4.
Any help would be appreciated.
Liam