I am building JSP application in which I want to do following operations on specific table
- Display Data
- Delete Data
I've done displaying data, however:
How can I delete a row in database if the table does not have any primary key ? (Delete operation does not depends on any value of that row)
Suppose here is may table -->> mytemp Here is the data
Name | RollNo
ABC | 98
XYZ | 76
ABC | 98
XYZ | 76
There is no key in this table and i want to delete 3 rd record. How can i do this ?