AmitDiwan has Published 10740 Articles

MySQL query to match any of the two strings from column values

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:21:10

732 Views

For this, you can use LIKE operator with OR condition.Let us first create a table −mysql> create table DemoTable762 (Title text); Query OK, 0 rows affected (0.54 sec)Insert some records in the table using insert command −mysql> insert into DemoTable762 values('Introduction to Java'); Query OK, 1 row affected (0.19 sec) ... Read More

Find sum by removing first character from a string followed by numbers in MySQL?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:19:12

456 Views

The strings (column values) begun with a character and rest of the string has numbers. We want the sum of these numbers −J230 A130s C13For this, use SUBSTRING() function along with SUM().Let us first create a table −mysql> create table DemoTable761 (Price varchar(100)); Query OK, 0 rows affected (0.62 sec)Insert ... Read More

How to merge queries in a single MySQL query to get the count of different values in different columns?

AmitDiwan

AmitDiwan

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

231 Views

Let us first create a table −mysql> create table DemoTable760 (    ClientId int,    ClientId2 int ); Query OK, 0 rows affected (0.79 sec)Insert some records in the table using insert command −mysql> insert into DemoTable760 values(100, 200); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable760 ... Read More

How to set NULL values in a table column and insert the same

AmitDiwan

AmitDiwan

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

428 Views

To set NULL values, set the type as NULL as in the below syntax −yourColumnName dataType NULL;Let us first create a table −mysql> create table DemoTable759 (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    FirstName varchar(100) NULL ); Query OK, 0 rows affected (0.72 sec)Insert some records in ... Read More

How do I set the default value for a column in MySQL?

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:09:10

1K+ Views

To set the default value, use the DEFAULT keyword.Let us first create a table −mysql> create table DemoTable758 (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    FirstName varchar(100) ); Query OK, 0 rows affected (0.66 sec)Following is the query to set default value for a column −mysql> alter ... Read More

Alphanumeric Order by in MySQL for strings mixed with numbers

AmitDiwan

AmitDiwan

Updated on 03-Sep-2019 08:05:33

588 Views

Let’s say you have a VARCHAR column in a table with values are strings and the numbers are on the right side. For example −John1023 Carol9871 David9098Now, consider you want to order by on the basis of these right-side numbers in the entire column. For this, use ORDER BY RIGHT.Let ... Read More

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

407 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

363 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

141 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

Advertisements