Found 4219 Articles for MySQLi

Replace the empty values from a MySQL table with a specific value

AmitDiwan
Updated on 03-Sep-2019 12:57:02

324 Views

Let us first create a table −mysql> create table DemoTable837(Name varchar(100)); Query OK, 0 rows affected (0.53 sec)Insert some records in the table using insert command −mysql> insert into DemoTable837 values('Chris'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable837 values(''); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable837 values('Robert'); Query OK, 1 row affected (0.08 sec) mysql> insert into DemoTable837 values(''); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable837 values('David'); Query OK, 1 row affected (1.13 sec)Display all records from the table using select statement −mysql> select *from DemoTable837;This will produce ... Read More

MySQL query to get the dates between range of records displaying student’s Date of Birth?

AmitDiwan
Updated on 03-Sep-2019 12:55:31

272 Views

For fetching records between dates, use BETWEEN. Let us first create a table −mysql> create table DemoTable863(StudentDateOfBirth date); Query OK, 0 rows affected (0.56 sec)Insert some records in the table using insert command −mysql> insert into DemoTable863 values('1998-01-10'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable863 values('2000-10-15'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable863 values('2003-04-20'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable863 values('2005-12-31'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable863 values('1999-07-01'); Query OK, 1 row affected (0.27 sec)Display all records from the table using select ... Read More

Remove specific word in a comma separated string with MySQL

AmitDiwan
Updated on 03-Sep-2019 12:54:08

923 Views

Let us first create a table −mysql> create table DemoTable836(FirstName SET('John', 'Chris', 'Adam')); Query OK, 0 rows affected (0.60 sec)Insert some records in the table using insert command −mysql> insert into DemoTable836 values('John, Chris'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable836 values('John, Chris, Adam'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable836 values('Chris, Adam'); Query OK, 1 row affected (0.25 sec) mysql> insert into DemoTable836 values('John, Adam'); Query OK, 1 row affected (0.37 sec)Display all records from the table using select statement −mysql> select *from DemoTable836;This will produce the following output −+-----------------+ | ... Read More

Can we insert values without mentioning the column name in MySQL?

AmitDiwan
Updated on 03-Sep-2019 12:52:52

520 Views

Yes, we can insert values without mentioning the column name using the following syntax −insert into yourTableName values(yourValue1, yourValue2, yourValue3, .....N);Let us first create a table. Here, we have set Id as NOT NULL −mysql> create table DemoTable862(    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    FirstName varchar(100) ,    Age int ); Query OK, 0 rows affected (0.68 sec)Insert some records in the table using insert command −mysql> insert into DemoTable862 values(NULL, 'Chris', 23); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable862 values(NULL, 'Robert', 21); Query OK, 1 row affected (0.18 sec) mysql> insert into ... Read More

How to concatenate two column values into a single column with MySQL. The resultant column values should be separated by hyphen

AmitDiwan
Updated on 03-Sep-2019 12:51:14

833 Views

Let us first create a table −mysql> create table DemoTable835(    CountryCode int,    CountryName varchar(100) ); Query OK, 0 rows affected (0.63 sec)Insert some records in the table using insert command −mysql> insert into DemoTable835 values(100, 'US'); Query OK, 1 row affected (0.36 sec) mysql> insert into DemoTable835 values(101, 'UK'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable835 values(102, 'AUS'); Query OK, 1 row affected (0.26 sec) mysql> insert into DemoTable835 values(103, 'ENG'); Query OK, 1 row affected (0.09 sec)Display all records from the table using select statement −mysql> select *from DemoTable835;This will produce the following ... Read More

MySQL query to update only month in date?

AmitDiwan
Updated on 03-Sep-2019 12:49:39

698 Views

To update only month in date, use MONTH(). Let us first create a table −mysql> create table DemoTable861(AdmissionDate date); Query OK, 0 rows affected (1.22 sec)Insert some records in the table using insert command −mysql> insert into DemoTable861 values('2019-01-21'); Query OK, 1 row affected (0.31 sec) mysql> insert into DemoTable861 values('2018-01-01'); Query OK, 1 row affected (0.49 sec) mysql> insert into DemoTable861 values('2016-01-02'); Query OK, 1 row affected (1.27 sec) mysql> insert into DemoTable861 values('2018-01-14'); Query OK, 1 row affected (0.47 sec)Display all records from the table using select statement −mysql> select *from DemoTable861;This will produce the following output −+---------------+ ... Read More

How to order by the highest value from two columns in MySQL?

AmitDiwan
Updated on 03-Sep-2019 12:48:44

451 Views

Let us first create a table −mysql> create table DemoTable834(    Value1 int,    Value2 int ); Query OK, 0 rows affected (1.50 sec)Insert some records in the table using insert command −mysql> insert into DemoTable834 values(10, 20); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable834 values(40, 50); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable834 values(20, 24); Query OK, 1 row affected (0.29 sec) mysql> insert into DemoTable834 values(30, 10); Query OK, 1 row affected (0.14 sec)Display all records from the table using select statement −mysql> select *from DemoTable834;This will produce the following ... Read More

How to skip rows in MySQL?

AmitDiwan
Updated on 03-Sep-2019 12:47:17

3K+ Views

To skip rows, use LIMIT OFFSET. Let us first create a table −mysql> create table DemoTable860(    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Name varchar(100) ); Query OK, 0 rows affected (0.73 sec)Insert some records in the table using insert command −mysql> insert into DemoTable860(Name) values('Chris'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable860(Name) values('Robert'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable860(Name) values('David'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable860(Name) values('Bob'); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable860(Name) values('Mike'); Query OK, 1 row ... Read More

How to make numbers 'human readable' in MySQL?

AmitDiwan
Updated on 03-Sep-2019 12:43:41

316 Views

To make numbers ‘human readable’ i.e. including separators, you need to use format(). Let us first create a table −mysql> create table DemoTable859(Number bigint); Query OK, 0 rows affected (1.54 sec)Insert some records in the table using insert command −mysql> insert into DemoTable859 values(747464646473737); Query OK, 1 row affected (0.45 sec) mysql> insert into DemoTable859 values(3836365366464); Query OK, 1 row affected (0.71 sec) mysql> insert into DemoTable859 values(8376437647433); Query OK, 1 row affected (0.46 sec)Display all records from the table using select statement −mysql> select *from DemoTable859;This will produce the following output −+-----------------+ | Number          | ... Read More

How to subtract seconds from all the date records in a MySQL column?

AmitDiwan
Updated on 03-Sep-2019 12:44:48

300 Views

Let us first create a table −mysql> create table DemoTable833(ArrivalTime datetime); Query OK, 0 rows affected (0.79 sec)Insert some records in the table using insert command −mysql> insert into DemoTable833 values('2019-01-10 12:40:50'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable833 values('2019-02-16 11:10:30'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable833 values('2018-03-17 10:00:10'); Query OK, 1 row affected (0.20 sec)Display all records from the table using select statement −mysql> select *from DemoTable833;This will produce the following output −+---------------------+ | ArrivalTime | +---------------------+ | 2019-01-10 12:40:50 | | ... Read More

Advertisements