AmitDiwan has Published 11365 Articles

Adding characters in values for an existing int column in MySQL?

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 11:08:26

311 Views

To add characters to an existing int column values, use MySQL CONCAT(). Let us first create a table −mysql> create table DemoTable (    Amount int ); Query OK, 0 rows affected (1.44 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(709); Query OK, 1 ... Read More

Pull MySQL records for the last 60 minutes?

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:50:28

593 Views

To pull records for the last 60 minutes, use MySQL INTERVAL as shown in the below syntax −select *from yourTableName where yourColumnName > now() - interval 60 minute;Let us first create a table −mysql> create table DemoTable (    ArrivalTime datetime ); Query OK, 0 rows affected (0.61 sec)Let us ... Read More

How to select records beginning with certain numbers in MySQL?

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:48:05

3K+ Views

The optimal solution to select records beginning with certain numbers, use MySQL LIKE operator. Let us first create a table −mysql> create table DemoTable (    ClientId bigint,    ClientName varchar(40) ); Query OK, 0 rows affected (0.82 sec)Insert some records in the table using insert command −mysql> insert into ... Read More

Delete selective multiple records using MySQL DELETE query

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:45:58

396 Views

For selective multiple records, use MySQL IN(). To delete them, use MySQL DELETE. Let us first create a table −mysql> create table DemoTable (    ClientId varchar(40),    ClientName varchar(50) ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert into DemoTable ... Read More

How to check if any of the strings in a column contains a specific string in MySQL?

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:41:16

1K+ Views

For this, use CONCAT() along with LIKE operator. Let us first create a table −mysql> create table DemoTable (    Name varchar(40) ); Query OK, 0 rows affected (0.56 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.33 sec) ... Read More

Perform NAND/NOR operations in MySQL

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:38:33

761 Views

Let us first see how we can perform NAND/NOR operations in MySQL. The concept is as follows −NAND= NOT( yourColumnName1 AND yourColumnName2) NOR=NOT( yourColumnName1 OR yourColumnName2)Let us first create a table −mysql> create table DemoTable (    Value1 boolean ,    Value2 boolean ); Query OK, 0 rows affected (0.72 ... Read More

Display records from the current date till rest of the same month in MySQL?

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:35:40

82 Views

Let us first create a table −mysql> create table DemoTable (    BookingDate date ); Query OK, 0 rows affected (0.67 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('2019-09-21'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('2018-09-10'); Query OK, 1 ... Read More

MySQL query to group by names and display the count in a new column

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:33:24

637 Views

Use GROUP BY with the COUNT() method. Group the names with GROUP BY and count using the COUNT() method. Let us first create a table −mysql> create table DemoTable (    Name varchar(30) ); Query OK, 0 rows affected (0.63 sec)Insert some records in the table using insert command −mysql> ... Read More

Need to populate autocomplete with records on the basis of first and last name of schools in MySQL?

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:30:14

58 Views

To populate autocomplete, use the LIKE clause in MySQL. Let us first create a table −mysql> create table DemoTable (    SchoolName varchar(100) ); Query OK, 0 rows affected (0.56 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('Horce Greeley'); Query OK, 1 row affected ... Read More

Group by one column and display corresponding records from another column with a separator in MySQL

AmitDiwan

AmitDiwan

Updated on 09-Oct-2019 10:28:07

1K+ Views

For this, use GROUP_CONCAT() along with GROUP BY. Here, the GROUP_CONCAT() is used to concatenate data from multiple rows into one field.Let us first create a table −mysql> create table DemoTable (    PlayerId int,    ListOfPlayerName varchar(30) ); Query OK, 0 rows affected (0.52 sec)Insert some records in the ... Read More

Advertisements