AmitDiwan has Published 11365 Articles

MySQL query to convert height format to centimeters?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 08:15:01

435 Views

For this, use the CAST() method in MySQL. Let us first create a table −mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentHeight varchar(40) ) ; Query OK, 0 rows affected (0.47 sec)Insert some records in the table using insert command −mysql> insert into ... Read More

How to sum varchar column and display the count in MySQL?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 08:09:55

588 Views

For this, use GROUP BY along with COUNT(*). Let us first create a table −mysql> create table DemoTable (    EmployeeId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    EmployeeGender varchar(40) ); Query OK, 0 rows affected (0.48 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(EmployeeGender) ... Read More

Format date with DATE_FORMAT() and STR_TO_DATE() in MySQL

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 08:01:09

239 Views

Let us first create a table −mysql> create table DemoTable (    DueDate varchar(100) ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('August 04, 2019'); Query OK, 1 row affected (0.25 sec)Display all records from the table using ... Read More

How can I set my auto-increment value to begin from 1 in MySQL?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 07:58:49

343 Views

You can truncate the table to set auto_increment value to start from 1 in MySQL. Let us first create a table −mysql> create table DemoTable (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY ); Query OK, 0 rows affected (1.44 sec)Insert some records in the table using insert command ... Read More

To return value of a number raised to the power of another number, we should use ^ operator in MySQL?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 07:53:54

58 Views

No, ^ is the Bitwise XOR operator in MySQL. For this, use POW() or POWER() from MySQL. Let us first create a table &minuns;mysql> create table DemoTable (    BaseValue int,    PowerValue float ); Query OK, 0 rows affected (0.48 sec)Insert some records in the table using insert command ... Read More

How to display records having sum between a specific range using GROUP BY, HAVING and ORDER BY in a single MySQL query?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 07:51:33

296 Views

Let us first create a table −mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    CustomerName varchar(20),    ProductPrice int ); Query OK, 0 rows affected (0.70 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(CustomerName, ProductPrice) values('Chris', 600); Query OK, ... Read More

Display duplicate record as a distinct value with corresponding values as distinct comma separated list in MySQL?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 07:47:06

480 Views

For this, you can use GROUP_CONCAT(). You also need to use DISTINCT to fetch distinct records. Let us first create a table −mysql> create table DemoTable(    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Name varchar(40),    Score int ); Query OK, 0 rows affected (0.53 sec)Insert some records ... Read More

How to sum selected column values based on specific month records in MySQL?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 07:44:57

251 Views

Let us first create a table −mysql> create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    PurchaseDate date,    SalePrice int ); Query OK, 0 rows affected (0.51 sec)Insert some records in the table using insert command −mysql> insert into DemoTable(PurchaseDate, SalePrice) values('2018-01-10', 450); Query OK, ... Read More

Does UPDATE overwrite values if they are identical in MySQL

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 07:42:42

397 Views

No, MySQL UPDATE won’t overwrite values if they are identical. Let us first create a table −mysql> create table DemoTable (    StudentId int,    StudentMathMarks int,    StudentMySQLMarks int ); Query OK, 0 rows affected (0.46 sec)Insert some records in the table using insert command −mysql> insert into DemoTable ... Read More

Count from two tables and give combined count of string in MySQL?

AmitDiwan

AmitDiwan

Updated on 04-Oct-2019 07:38:31

145 Views

To count, use the MySQL COUNT(*). However, with UNION ALL you would be able to get a combined count of string. Let us first create a table −mysql> create table DemoTable1 (    Name varchar(20) ); Query OK, 0 rows affected (0.49 sec)Insert some records in the table using insert ... Read More

Advertisements