I have a table named contacts
id name value
1 a x
2 b c
3 c x
4 d x
5 e x
How I want to delete the rows that contain value of x ?
I have a table named contacts
id name value
1 a x
2 b c
3 c x
4 d x
5 e x
How I want to delete the rows that contain value of x ?
A simple SQL query will do.
DELETE * FROM contacts WHERE value='x'