How to delete data from MySQL?

Hi,

How I can conditionally delete the data from MySQL Table?

Thanks

View Answers

July 12, 2016 at 9:45 AM

Hi,

You can use the where clause to conditionally delete the data from MySQL database table.

Here is some query examples:

delete from email where email_count=400;
delete from email where first_name='Ishu';

Thanks


July 14, 2016 at 3:14 AM

Check following video:

Thanks









Related Tutorials/Questions & Answers:
Advertisements