How To Delete Specific Rows Data From MySQL Tutorial Example
Open your MySQL Query Editor then copy & paste the below code to delete specific rows from a database table "test" in MySQL Database Server
-- How To Delete Specific Rows Data From MySQL Tutorial Example DELETE FROM test WHERE TestName='Noor.Hasan'; -- that's it!! all rows of mysql database table "test" have/has been deleted -- whose TestName value is "Noor.Hasan"
-- is comment in MySQL -- in fact it is comment in MSSQL and Oracle as well
How To Delete Specific Rows Data From MySQL Tutorial Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL IFNULL() Function Boolean Example
- MySQL IFNULL() Function NULL Value Example
- MySQL IF() Nested Function Example
- MySQL IF() Function NULL Value Example
- MySQL IF() Function Datetime Value Example
- Parentheses in SQL Command MySQL Example
- How to Find MySQL Stored Procedure or Function Information
- How To Find MySQL SERVER VERSION Information
- 20 steps to make CakePHP Blog Project
No comments:
Post a Comment
leave your comments here..