AmitDiwan has Published 10740 Articles

Delete a record with tablename.columnname= value in MySQL

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 14:04:14

157 Views

To delete a record in the required way, the syntax is as follows −delete from yourTableName where yourTableName .yourColumnName=yourValue;Let us first create a table −mysql> create table DemoTable (    StudentName varchar(100),    StudentAge int ); Query OK, 0 rows affected (0.81 sec)Insert some records in the table using insert ... Read More

Perform MySQL UPDATE on the basis of DATE value in another column

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 14:00:41

236 Views

Let us first create a table −mysql> create table DemoTable(    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Name varchar(100),    AdmissionDate date ); Query OK, 0 rows affected (0.42 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(Name, AdmissionDate) values('Chris', '2019-11-21'); Query OK, 1 ... Read More

Selecting all the users with maximum age values using a MySQL subquery?

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:54:18

392 Views

Let us first create a table −mysql> create table DemoTable (    Name varchar(100),    Age int ); Query OK, 0 rows affected (0.46 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Chris', 23); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable ... Read More

Counting the total and true condition values in a MySQL table?

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:47:06

140 Views

For this, you can use COUNT(). Let us first create a table −mysql> create table DemoTable (    Value int ); Query OK, 0 rows affected (0.69 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(10); Query OK, 1 row affected (0.14 sec) mysql> insert ... Read More

How to remove duplicate values from a MySQL table using LEFT JOIN?

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:43:38

618 Views

Let us first create a table −mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    FirstName varchar(100) ); Query OK, 0 rows affected (0.46 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(FirstName) values('Chris'); Query OK, 1 row affected (0.18 sec) ... Read More

How to concatenate strings from different columns and an additional string using a MySQL query?

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:41:30

137 Views

Let us first create a table −mysql> create table DemoTable (    FirstName varchar(100),    LastName varchar(100) ); Query OK, 0 rows affected (0.76 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Chris', 'Brown'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable ... Read More

How to update a field with a particular value if it is null in MySQL?

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:10:08

1K+ Views

To update a field if it is null, use IS NULL property along with the UPDATE command. Let us first create a table −mysql> create table DemoTable (    StudentScore int ); Query OK, 0 rows affected (0.47 sec)Insert some records in the table using insert command −mysql> insert into ... Read More

Insert values from the first table to the second table using two SELECT statements in a single MySQL query

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:08:03

327 Views

To insert values from the first table to another table using two SELECT statements, use SUBQUERY. This will allow you to use only a single MySQL query to get the result in the second table. Let us first create a table −mysql> create table DemoTable1 (    Name varchar(100),   ... Read More

How to ORDER BY FIELD with GROUP BY in a single MySQL query?

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:05:27

345 Views

For this, let us first create a table −mysql> create table DemoTable (    Message text ); Query OK, 0 rows affected (1.15 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Good'); Query OK, 1 row affected (0.43 sec) mysql> insert into DemoTable values('Bye'); Query ... Read More

How to set MySQL default value NONE?

AmitDiwan

AmitDiwan

Updated on 24-Sep-2019 13:03:19

814 Views

To set the default value in MySQL, you need to use the DEFAULT keyword. Let us first create a table −mysql> create table DemoTable (    ClientCountryName varchar(100) DEFAULT 'NONE' ); Query OK, 0 rows affected (0.65 sec)We have set DEFAULT above for values not entered while insertion. Now, let ... Read More

Advertisements