AmitDiwan has Published 10744 Articles

Get the minimum value from a list with multiple columns in MySQL?

AmitDiwan

AmitDiwan

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

1K+ Views

Let us first create a table −mysql> create table DemoTable756 (    Value1 int,    Value2 int,    Value3 int ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert into DemoTable756 values(10, 20, 14); Query OK, 1 row affected (0.22 sec) ... Read More

Perform filtering on an alias in MySQL?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:57:07

381 Views

For this, use alias on HAVING clause.Let us first create a table −mysql> create table DemoTable755 (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Score1 int,    Score2 int ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert into ... Read More

How to return distinct values in MySQL and their count?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:53:30

345 Views

To return only the distinct values, use GROUP BY clause.Let us first create a table −mysql> create table DemoTable754 (ProductPrice int); Query OK, 0 rows affected (0.48 sec)Insert some records in the table using insert command −mysql> insert into DemoTable754 values(200); Query OK, 1 row affected (0.20 sec) mysql> insert ... Read More

Want to fetch only the month part from a date in MySQL

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:50:04

117 Views

To fetch only the month part, use DATE_FORMAT().Let us first create a table −mysql> create table DemoTable753 (DueDate datetime); Query OK, 0 rows affected (0.51 sec)Insert some records in the table using insert command −mysql> insert into DemoTable753 values('2019-06-21'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable753 ... Read More

MySQL query to ORDER BY `user_id` IN (1,2,3) AND `name` for custom ordering

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:47:38

134 Views

To implement IN() for custom ordering, use ORDER BY CASE.Let us first create a table −mysql> create table DemoTable752 (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Name varchar(100) ); Query OK, 0 rows affected (0.63 sec)Insert some records in the table using insert command −mysql> insert into ... Read More

Get all the records with two different values in another column with MySQL

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:43:13

697 Views

For this, you can use GROUP BY HAVING clause.Let us first create a table −mysql> create table DemoTable751 (    StudentName varchar(100),    SubjectName varchar(100) ); Query OK, 0 rows affected (0.66 sec)Insert some records in the table using insert command −mysql> insert into DemoTable751 values('John', 'MySQL'); Query OK, ... Read More

Select records from a table on the basis of keywords in MySQL

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:40:36

460 Views

Let’s say some of the columns values in a table has a specific keyword and you want only those records. For this, use the LIKE operator.Let us first see an example and create a table −mysql> create table DemoTable750 (Title varchar(200)); Query OK, 0 rows affected (0.69 sec)Insert some records ... Read More

List logged-in MySQL users?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:38:50

239 Views

To list logged-in MySQL users, you can use any of the following two methods −First MethodUse INFORMATION_SCHEMA.PROCESSLISTselect *from INFORMATION_SCHEMA.PROCESSLIST;Second MethodYou can use SHOW PROCESSLIST command as well. Following is the syntax −SHOW PROCESSLIST;Let us implement the above syntaxes in order to list logged in MySQL users −mysql> select *from information_schema.processlist;This ... Read More

Update all the zero values with a custom value in MySQL with a function similar to ISNULL()

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:36:20

353 Views

For this, you can use custom IF() and set a value whenever 0 appears.Let us first create a table −mysql> create table DemoTable749 (Value int); Query OK, 0 rows affected (1.02 sec)Insert some records in the table using insert command −mysql> insert into DemoTable749 values(10); Query OK, 1 row affected ... Read More

MySQL query to extract only the day instead of entire date

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 07:29:38

944 Views

To extract only the day instead of the entire date, you need to use DAYOFMONTH() function from MySQL.Let us first create a table −mysql> create table DemoTable747 (DueDate datetime); Query OK, 0 rows affected (0.53 sec)Insert some records in the table using insert command −mysql> insert into DemoTable747 values('2019-01-31') ; ... Read More

Advertisements