AmitDiwan has Published 10740 Articles

Find the records with % character in a LIKE query with MySQL

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 08:06:08

238 Views

Let us first create a table −mysql> create table DemoTable742 (Value varchar(100)); Query OK, 0 rows affected (2.91 sec)Insert some records in the table using insert command −mysql> insert into DemoTable742 values('632535MIT'); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable742 values('US%UK'); Query OK, 1 row affected (0.13 ... Read More

How to subtract the same amount from all values in a column with MySQL?

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 08:04:47

825 Views

Let us first create a table −mysql> create table DemoTable741 (Number int); Query OK, 0 rows affected (0.61 sec)Insert some records in the table using insert command −mysql> insert into DemoTable741 values(70); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable741 values(55); Query OK, 1 row affected (0.14 ... Read More

Find records with double quotes in a MySQL column?

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 08:03:19

818 Views

Use LIKE to find records with double quotes. Following is the syntax −select *from yourTableName where yourColumnName LIKE '%"%';Let us first create a table −mysql> create table DemoTable740 (Value varchar(100)); Query OK, 0 rows affected (0.49 sec)Insert some records in the table using insert command −mysql> insert into DemoTable740 values("\""); ... Read More

Finding the sum of integers from multiple MySQL rows in same column?

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 08:01:43

270 Views

Let us first create a table −mysql> create table DemoTable739 (Price int); Query OK, 0 rows affected (0.65 sec)Insert some records in the table using insert command −mysql> insert into DemoTable739 values(100); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable739 values(50); Query OK, 1 row affected (0.14 ... Read More

Match optional end of line after every record with REGEXP?

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 08:00:26

93 Views

Let us first create a table −mysql> create table DemoTable(EmployeeCode varchar(100)); Query OK, 0 rows affected (0.56 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('EMPLOYEE:100 John Smith'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values('EMPLOYEE:16537 Chris Brown'); Query OK, 1 ... Read More

Using Regex find strings containing a-z, A-Z and 0-9 in MySQL

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 08:00:19

537 Views

To find strings containing a-z, A-Z and 0-9, use BINARY REGEXP along with AND operator.Let us first create a table −mysql> create table DemoTable738 (UserId varchar(100)); Query OK, 0 rows affected (0.81 sec)Insert some records in the table using insert command  −mysql> insert into DemoTable738 values('John'); Query OK, 1 row ... Read More

How to create an empty VIEW in MySQL?

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 07:58:54

844 Views

To create an empty view in MySQL, following is the syntax −create or replace view yourViewName as select yourValue AS yourColumnName, yourValue AS yourColumnName2, . . N from dual where false;Let us implement the above syntax in order to create an empty view in MySQL −mysql> create or replace view ... Read More

Implementing DEFAULT CURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP in MySQL

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 07:56:30

4K+ Views

With the DEFAULT CURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP, a column has the current timestamp for its default value and is automatically updated to the current timestamp.Let us see an example and create a table −mysql> create table DemoTable737 (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(100), ... Read More

How to update all the entries except a single value in a particular column using MySQL?

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 07:54:03

1K+ Views

To update all the entries while ignoring a single value, you need to use IF().Let us first create a table −mysql> create table DemoTable736 (    CustomerId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    CustomerName varchar(100),    isMarried boolean ); Query OK, 0 rows affected (0.53 sec)Insert some records in ... Read More

Delete multiple entries from a MySQL table

AmitDiwan

AmitDiwan

Updated on 22-Aug-2019 07:52:05

833 Views

To delete multiple entries from a MySQL table, use JOIN. Let us first create a table −mysql> create table DemoTabl(Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, FirstName varchar(100)); Query OK, 0 rows affected (0.69 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(FirstName) values('Chris'); Query OK, ... Read More

Advertisements