AmitDiwan has Published 10740 Articles

MySQL query to find the date records wherein the current date and time is in between the JoiningDate and RelievingDate

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:49:22

132 Views

Use BETWEEN to find the date and time between joining and relieving date. NOW() is used to get the current date and time for comparison.Let us first create a table −mysql> create table DemoTable771 ( Joiningdate datetime, Relievingdate datetime ); Query OK, 0 rows ... Read More

Updating only a single column value in MySQL?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:46:35

1K+ Views

Let us first create a table −mysql> create table DemoTable770 ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Value int ); Query OK, 0 rows affected (0.65 sec)Insert some records in the table using insert command −mysql> insert into DemoTable770(Value) values(10); Query OK, 1 ... Read More

How to set country code to column values with phone numbers in MySQL?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:41:28

4K+ Views

To set country code to phone numbers would mean to concatenate. You can use CONCAT() for this.Let us first create a table −mysql> create table DemoTable769 (MobileNumber varchar(100)); Query OK, 0 rows affected (0.54 sec)Insert some records in the table using insert command −mysql> insert into DemoTable769 values('8799432434'); Query OK, ... Read More

MySQL query to set values for NULL occurrence

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:40:01

228 Views

Find NULL values using the IS NULL and update the new values using MySQL UPDATE and SET −update yourTableName set yourColumnName=yourValue where yourColumnName IS NULL;Let us first create a table −mysql> create table DemoTable768 (    Clientid int NOT NULL AUTO_INCREMENT PRIMARY KEY,    ClientName varchar(100),    ClientAge int ); ... Read More

MySQL query to convert a single digit number to two-digit

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:34:38

4K+ Views

For this, you can use LPAD() and pad a value on the left.Let us first create a table −mysql> create table DemoTable767 (Value varchar(100)); Query OK, 0 rows affected (1.40 sec)Insert some records in the table using insert command −mysql> insert into DemoTable767 values('4'); Query OK, 1 row affected (0.15 ... Read More

Add a character in the end to column values with MySQL SELECT?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:32:14

2K+ Views

For this, you need to perform concatenation using CONCAT().Let us first create a table −mysql> create table DemoTable766 (Name varchar(100)); Query OK, 0 rows affected (0.65 sec)Insert some records in the table using insert command −mysql> insert into DemoTable766 values('John'); Query OK, 1 row affected (0.12 sec) mysql> insert into ... Read More

How to display highest value from a string with numbers set as varchar in MySQL?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:28:53

149 Views

For this, you need to cast the varchar value to INTEGER.Let us first create a table −mysql> create table DemoTable765 (ItemPrice varchar(200)); Query OK, 0 rows affected (0.52 sec)Insert some records in the table using insert command −mysql> insert into DemoTable765 values('567.00'); Query OK, 1 row affected (0.16 sec) mysql> ... Read More

How to concatenate columns based on corresponding duplicate id values in MySQL? Display the duplicate values in the same column separated by slash

AmitDiwan

AmitDiwan

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

739 Views

For this, you can use GROUP_CONCAT().Let us first create a table −mysql> create table DemoTable764 (    ProductId int,    ProductPrice int ); Query OK, 0 rows affected (0.56 sec)Insert some records in the table using insert command −mysql> insert into DemoTable764 values(101, 10000); Query OK, 1 row affected (0.12 ... Read More

MySQL query to get result from multiple select statements?

AmitDiwan

AmitDiwan

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

786 Views

To get result from multiple select statements, use UNION ALL. Following is the syntax −select yourValue1 AS anyColumnName UNION ALL select yourValue2 AS yourColumnName . . . . NLet us implement the above syntax in order to return enumeration of numbers in different rows −mysql> select 100 AS Number   ... Read More

How to select last two rows in MySQL?

AmitDiwan

AmitDiwan

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

8K+ Views

To select last two rows, use ORDER BY DESC LIMIT 2.Let us first create a table −mysql> create table DemoTable763 (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    FirstName varchar(100) ); Query OK, 0 rows affected (0.57 sec)Insert some records in the table using insert command −mysql> insert ... Read More

Advertisements