AmitDiwan has Published 11365 Articles

How to select all the records except a row with certain id from a MySQL table?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:24:12

739 Views

To avoid displaying a certain id from a table, you need to use the operator, which is the NOT EQUAL operator. Let us first create a table −mysql> create table DemoTable7 (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(40) ); Query OK, 0 rows affected ... Read More

How to update empty string to NULL in MySQL?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:19:43

880 Views

For this, use LENGTH(), since if the length is 0 that would mean the string is empty. After finding, you can set it to NULL using the SET clause in the UPDATE command. Let us first create a table −mysql> create table DemoTable (    Name varchar(50) ); Query OK, ... Read More

Get the first 10 rows followed by the syntax to display remaining row records with a single MySQL query

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:14:05

123 Views

Let us first create a table −mysql> create table DemoTable (    Id int ); Query OK, 0 rows affected (0.71 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(100); Query OK, 1 row affected (0.31 sec) mysql> insert into DemoTable values(101); Query OK, 1 ... Read More

What is the alternative of BETWEEN clause to fetch values between a range in MySQL?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:10:45

971 Views

To avoid using the BETWEEN clause, you can use the AND to fetch the values between a range. Let us first create a table −mysql> create table DemoTable (    Number int ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert ... Read More

MySQL query to display the first alphabet from strings in a separate column

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:08:35

17K+ Views

To fetch the first alphabet from the strings, use LEFT(). This method allows you to return characters from the left of the string.Let us first see an example and create a table −mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    FirstName varchar(100) ); Query ... Read More

Change the column name from a MySQL table with Student record?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:05:16

190 Views

To change the column name, use the AS keyword after the column name. Let us first create a table −mysql> create table DemoTable (    Id int,    StudentFirstNameInCollege varchar(100) ); Query OK, 0 rows affected (0.68 sec)Insert some records in the table using insert command −mysql> insert into DemoTable ... Read More

MySQL query to select three highest values and sort alphabetically on the basis of corresponding column with name

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:02:35

659 Views

For this, you can use the ORDER BY clause. Let us first create a table −mysql> create table DemoTable (    Name varchar(40),    Score int ); Query OK, 0 rows affected (1.11 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Chris', 45); Query OK, ... Read More

Adding records with REPLACE INTO to mimic DELETE and INSERT

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 08:00:10

107 Views

You can use REPLACE INTO that works like DELETE + INSERT. Let us first create a table −mysql> create table DemoTable (    Id int,    FirstName varchar(50) ); Query OK, 0 rows affected (0.60 sec)Following is the query to create a unique index −mysql> alter table DemoTable add unique ... Read More

A single MySQL query to find the highest and lowest among two tables?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 07:55:54

113 Views

To find the highest and lowest from two tables, use MAX() and MIN(). Since the results are to be displayed from two tables, you need to use UNION. Let us first create a table −mysql> create table DemoTable1 (    UniqueId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Score1 int ... Read More

Can we skip column when inserting into MySQL?

AmitDiwan

AmitDiwan

Updated on 01-Oct-2019 07:52:50

595 Views

If your first column is AUTO_INCREMENT, then you can skip the column and place the value NULL. Let us first create a table −mysql> create table DemoTable (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentFirstName varchar(100),    StudentAge int ); Query OK, 0 rows affected (0.60 sec)Insert ... Read More

Advertisements