MySQL DELETE Statement-
MySQL DELETE statement is used to delete data from the MySQL table within the database. By using delete statement, we can delete records on the basis of conditions.
Syntax:
DELETE FROM table_name
WHERE
(Condition specified);
Example:
DELETE FROM cus_tbl
WHERE cus_id = 6;
Subscribe channel on YouTube:-
https://www.youtube.com/c/ipctrd/videos
Read this post on Blogger:- http://ipctrd.blogspot.in/
Like page on Facebook:- https://www.facebook.com/ipctrd/
Tweet about video on twitter:- https://twitter.com/ipctrd
See you at Instagram :- https://www.instagram.com/ipctrd/
Google+ :- https://plus.google.com/u/0/101013097390807587448

Comments
Post a Comment