AmitDiwan has Published 11365 Articles

Is there a way to create a MySQL “alias” while creating a VIEW?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 07:12:36

182 Views

Yes, use the AS keyword to create a MySQL alias. Let us first create a table −mysql> create table DemoTable (    FirstName varchar(100) ); Query OK, 0 rows affected (0.54 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Chris'); Query OK, 1 row affected ... Read More

MySQL ORDER BY with CASE WHEN

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 07:11:21

3K+ Views

For this, you can use the ORDER BY CASE statement. Let us first create a table −mysql> create table DemoTable order by with vas Color varchar(100) ); Query OK, 0 rows affected (0.64 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Red'); Query OK, 1 ... Read More

MySQL query to select column values ending with certain character/number?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 07:06:40

2K+ Views

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

MySQL query to update a specific cell to be empty

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 07:01:19

313 Views

Let us first create a table −mysql> create table DemoTable (    Id int,    Name varchar(50) ); Query OK, 0 rows affected (0.47 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(1001, 'Robert'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable ... Read More

MySQL query to sum 3 different values in a column displaying total of each value in result set?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 06:59:33

142 Views

For this, you can use a CASE statement. Let us first create a table −mysql> create table DemoTable (    ProductName varchar(100),    ProductRating ENUM('1', '2', '3') ); Query OK, 0 rows affected (0.50 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Product-1', 3); Query ... Read More

Inserting multiple parameter values into a single column with MySQL?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 06:56:35

356 Views

To insert multiple parameter values into a single column, use the CONCAT_WS() or CONCAT(). Let us first create a table −mysql> create table DemoTable (    Name varchar(100),    Age int,    CountryName varchar(100),    PersonInformation text ); Query OK, 0 rows affected (0.67 sec)Following is the query to insert ... Read More

Select into a user-defined variable with MySQL

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 06:54:37

308 Views

For user-defined variables, we use @ in MySQL. Following is the syntax. Here, @anyVariableName is our user-defined variable −select yourColumnName into @anyVariableName from yourTableName where yourCondition;Let us first create a table −mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Name varchar(100) ); Query OK, ... Read More

MySQL query to get the length of all columns and display the result in a single new column?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 06:52:59

555 Views

To get the length of all columns i.e. the count of all the characters for column values, use char_length(). Let us first create a table. Here, we have two columns, therefore we will calculate for each row consisting of both the values FirstName and LastName −mysql> create table DemoTable ( ... Read More

MySQL query to delete a DATE older than 30 days from another date?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 06:51:08

481 Views

Following is the syntax −delete from yourTableName where yourColumnName < (yourAnotherDateValue - INTERVAL 30 DAY);Let us first create a table −mysql> create table DemoTable (    DueDate date ); Query OK, 0 rows affected (0.68 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('2019-08-25'); Query ... Read More

MySQL query to display columns name first name, last name as full name in a single column?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 06:49:29

11K+ Views

For this, use CONCAT() method in MySQL. Let us first create a table −mysql> create table DemoTable (    FirstName varchar(50),    LastName varchar(50) ); Query OK, 0 rows affected (0.63 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Chris', 'Brown'); Query OK, 1 row ... Read More

Advertisements