Feb 21, 2002 #1 hyperbug Programmer Aug 10, 2001 25 ES I tried the following: delete empopattribute from employeropening, empopattribute where employeropening.employerOpeningId = empopattribute.employerOpeningId
I tried the following: delete empopattribute from employeropening, empopattribute where employeropening.employerOpeningId = empopattribute.employerOpeningId
Feb 26, 2002 #2 petersJazz Programmer Jan 28, 2002 222 EU The delete statement has the syntax: delete from table where condition; If you want to erase a column value you do: update table set column=null where condition; Upvote 0 Downvote
The delete statement has the syntax: delete from table where condition; If you want to erase a column value you do: update table set column=null where condition;