How to delete [message #197689] |
Thu, 12 October 2006 05:51 |
arunprabhu29917
Messages: 15 Registered: September 2006 Location: Tamilnadu
|
Junior Member |
|
|
EMPNO EMPNAME EMPID EMPADD
---------- -------------------- -------------------- --------------------
100 arun u100 udt
101 prabhu u101 poy
102 raj u102 trichy
103 devi u103 covai
104 nimmy u104 palani
105 sam u105 trivandrum
105 sam
In above table I want to delete the last row..i.e empno 105,empname sam.
how to do it?
[Updated on: Thu, 12 October 2006 05:52] Report message to a moderator
|
|
|
|
|
|
|
|
Re: How to delete [message #197887 is a reply to message #197697] |
Fri, 13 October 2006 02:09 |
be2sp1
Messages: 52 Registered: September 2005 Location: India
|
Member |
|
|
DELETE FROM arun
2 WHERE
3 empadd is NULL;
Suggest, try doing some hit n trial and searching (internet, documentation etc) to find a way.
Thanks
|
|
|