AmitDiwan has Published 11365 Articles

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

AmitDiwan

AmitDiwan

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

335 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

430 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

957 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

258 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

284 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

86 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

93 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

592 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

389 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

Advertisements