I just wanted to know the correct syntax for deleting a selective row. For example, if there's a column in a table where the values are between 100 and 300. How can I delete the row where the column has values lower than 200?
SELECT sc_status
FROM o_weblog
WHERE sc_status < 200;
All this shows me is an empty column.