I got a sql table, say of the form
name age
h 1
a 2
r 3
i 4
I want to delete the 1st row and 3rd row. I want something of the form,
delete from tablename where name=h,r;
is this the correct syntax?