
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
MySQL query to delete a row if two columns are equal
Use DELETE for this. Let us first create a table −
mysql> create table DemoTable ( Name varchar(40), Score1 int , Score2 int ); Query OK, 0 rows affected (2.71 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable values('John',56,76); Query OK, 1 row affected (0.66 sec) mysql> insert into DemoTable values('Chris',77,77); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values('David',89,98); Query OK, 1 row affected (0.13 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
This will produce the following output −
+-------+--------+--------+ | Name | Score1 | Score2 | +-------+--------+--------+ | John | 56 | 76 | | Chris | 77 | 77 | | David | 89 | 98 | +-------+--------+--------+ 3 rows in set (0.00 sec)
Following is the query to delete a row if two columns are equal −
mysql> delete from DemoTable where Score1=Score2; Query OK, 1 row affected (0.29 sec)
Let us check the table records once again −
mysql> select *from DemoTable;
This will produce the following output −
+-------+--------+--------+ | Name | Score1 | Score2 | +-------+--------+--------+ | John | 56 | 76 | | David | 89 | 98 | +-------+--------+--------+ 2 rows in set (0.00 sec)
- Related Articles
- MySQL query to delete row
- Comparing two columns in a single MySQL query to get one row?
- MySQL query to check if a certain row has only two words?
- Update two columns with a single MySQL query
- MySQL query to combine two columns in a single column?
- When inserting a new row, should I include the columns that are null in the MySQL query?
- Count two different columns in a single query in MySQL?
- MySQL query to delete last two words from every column value
- What happens if I will delete a row from MySQL parent table?
- MySQL query to find the number of occurrences from two columns?
- Order by a function of two columns in a single MySQL query
- MySQL query to delete table rows if string in cell is matched
- MySQL query to sort multiple columns together in a single query
- Delete selective multiple records using MySQL DELETE query
- MySQL query to check if a string contains a value (substring) within the same row?

Advertisements