Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delete Stored Procedure

Status
Not open for further replies.

liaml1

MIS
Joined
Nov 24, 2004
Messages
63
Location
DM
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
 
the table is tb_property.

How would you go about writing this delete stored procedure?

Liam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top