AmitDiwan has Published 10744 Articles

Fetch records on the basis of LastName using MySQL IN()

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:25:09

128 Views

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

MySQL query to replace only the NULL values from the table?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:22:56

142 Views

For this, you can use the property IS NULL for null values in MySQL. Let us first create a table −mysql> create table DemoTable (    Name varchar(100) ); Query OK, 0 rows affected (0.53 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Robert'); Query ... Read More

Display the record with non-duplicate Id using MySQL GROUP BY and HAVING

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:19:40

150 Views

Let us first create a table −mysql> create table DemoTable (    Id int,    ColorName varchar(100) ); Query OK, 0 rows affected (0.56 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(100, 'Red'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable ... Read More

Delete last value and fix two new values (VARCHAR Numbers) in MySQL declared as VARCHAR?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:16:41

100 Views

Let us first create a table. Here, we have VARCHAR type for value −mysql> create table DemoTable (    Value varchar(100) ); Query OK, 0 rows affected (1.80 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('100'); Query OK, 1 row affected (0.20 sec) mysql> ... Read More

MySQL query to fetch date records greater than the current date after adding days with INTERVAL?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:14:58

609 Views

Let us first create a table −mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    AddDay int,    PostDate date ); Query OK, 0 rows affected (2.73 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(AddDay, PostDate) values(20, '2019-08-04'); Query OK, ... Read More

Add a new column to table and fill it with the data of two other columns of the same table in MySQL?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:12:07

946 Views

Let us first create a table −mysql> create table DemoTable (    Price int,    Quantity int ); Query OK, 0 rows affected (0.71 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(45, 3); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable ... Read More

Create a temporary table similar to a regular table with MySQL LIKE

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:09:41

184 Views

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

Display record with today and tomorrow’s date from a column with date record in MySQL

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:07:19

567 Views

Let us first create a table −mysql> create table DemoTable (    AdmissionDate date ); Query OK, 0 rows affected (0.87 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('2019-08-24'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values('2019-08-25'); Query OK, 1 ... Read More

How do I sort numbers saved as VARCHAR in MySQL with some of them having preceding 0 like 085, 090, etc.?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:05:29

55 Views

Following is the syntax −select *from yourTableName order by yourColumnName*1, yourColumnName;Let us first create a table −mysql> create table DemoTable (    Value varchar(100) ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('90'); Query OK, 1 row affected ... Read More

Converting boolean values to positive or negative sign in MySQL?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:03:55

374 Views

Following is the syntax −select if(yourColumnName, 1, -1) from yourTableName;Let us first create a table −mysql> create table DemoTable (    isMarried boolean ); Query OK, 0 rows affected (0.60 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(true); Query OK, 1 row affected (0.21 ... Read More

Advertisements