AmitDiwan has Published 11365 Articles

How to alter column type of multiple columns in a single MySQL query?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 06:47:21

621 Views

To alter column type of multiple columns in a single MySQL query, the syntax is as follows −alter table yourTableName modify column yourColumnName 1 yourDataType1, modify column yourColumnName 2 yourDataType2, . . N;Let us first create a table −mysql> create table DemoTable (    Id varchar(100),    FirstName text,   ... Read More

Get the count of two table fields in a single MySQL query?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:28:18

573 Views

For this, you can use the CASE statement along with SUM(). Here, we will be finding the count of Male and Female records from a column with employee gender values. Let us first create a table −mysql> create table DemoTable (    EmployeeGender ENUM('Male', 'Female') ); Query OK, 0 rows ... Read More

What is the usage of “@” symbol in MySQL stored procedure?

AmitDiwan

AmitDiwan

Updated on 30-Sep-2019 08:26:39

804 Views

The @ symbol in a stored procedure can be used for user-defined session variables. Let us first create a table −mysql> create table DemoTable (    StudentName varchar(50) ); Query OK, 0 rows affected (1.30 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('John Smith'); ... Read More

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

AmitDiwan

AmitDiwan

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

96 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

88 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

115 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

68 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

539 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

842 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

126 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

Advertisements