Hello, Could you please tell me how to delete a row in a database. I am asking for the SQl statement. for example "INSERt INTO" for inserting values. Thanks
SCJP 1.4, SCMAD 1.0<br />SCWCD, SCBCD (in progress)
Ransika deSilva
Ranch Hand
Joined: Feb 18, 2003
Posts: 524
posted
0
Sorry for Posting this question in the wrong forum.
weel the SQL statement is here.... Syntax ====== "DELETE FROM table_name WHERE field_name = value" Example DELETE FROM employee WHERE emp_id= 'E123'; Bye