Count Days in Date Range with Start and End Date in MySQL

AmitDiwan
Updated on 22-Aug-2019 07:41:11

870 Views

To count days in date range, you need to find the difference between dates using DATEDIFF().Let us first create a table:mysql> create table DemoTable730 (    StartDate date,    EndDate date ); Query OK, 0 rows affected (0.45 sec)Insert some records in the table using insert command:mysql> insert into DemoTable730 values('2019-01-21', '2019-07-21'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable730 values('2018-10-11', '2018-12-31'); Query OK, 1 row affected (0.46 sec) mysql> insert into DemoTable730 values('2016-01-01', '2016-12-31'); Query OK, 1 row affected (0.14 sec)Display all records from the table using select statement:mysql> select *from DemoTable730;This will produce the following ... Read More

Display Student Marks in a Single Column Based on Subject in MySQL

AmitDiwan
Updated on 22-Aug-2019 07:40:10

2K+ Views

For this, use UNION ALL.Let us first create a table:mysql> create table DemoTable729 (    StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    StudentName varchar(100),    MySQLMarks int,    CMarks int,    JavaMarks int ); Query OK, 0 rows affected (0.40 sec)Insert some records in the table using insert command:mysql> insert into DemoTable729(StudentName, MySQLMarks, CMarks, JavaMarks) values('Chris', 94, 67, 75); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable729(StudentName, MySQLMarks, CMarks, JavaMarks) values('Robert', 45, 99, 54); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable729(StudentName, MySQLMarks, CMarks, JavaMarks) values('David', 57, 89, 43); Query OK, 1 row ... Read More

Calculating Power of a Number in MySQL

AmitDiwan
Updated on 22-Aug-2019 07:39:06

121 Views

To calculate power of a number, use POWER() function. Let us first create a table −mysql> create table DemoTable    (       Amount int    ); Query OK, 0 rows affected (0.89 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(64); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(144); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values(400); Query OK, 1 row affected (0.13 sec)Display all records from the table using select statement −mysql> select *from DemoTable;This will produce the following output −+--------+ | Amount | ... Read More

Convert UK Date to MySQL Date

AmitDiwan
Updated on 22-Aug-2019 07:36:41

408 Views

The UK date format supports day-moth-year format. To convert it to MySQL date, use STR_TO_DATE(). Following is the syntax:select str_to_date(yourColumnName, '%d/%m/%Y') from yourTableName;Let us first create a table:mysql> create table DemoTable728 (DueDate varchar(100)); Query OK, 0 rows affected (0.59 sec)Insert some records in the table using insert command:mysql> insert into DemoTable728 values('10/11/2019'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable728 values('31/01/2016'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable728 values('01/12/2015'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable728 values('11/03/2018'); Query OK, 1 row affected (0.16 sec)Display all records from the table ... Read More

Print Lexicographically Smallest DFS of Graph in C

Sunidhi Bansal
Updated on 22-Aug-2019 07:36:26

320 Views

We will be given a connected graph with N vertices and M edges. So we have to print the lexicographically smallest DFS of the graph starting from 1.Vertices should be numbered from 1 to NExampleInput: N = 5 M =5    edge(1, 4, arr)    edge(3, 4, arr)    edge(5, 4, arr)    edge(3, 2, arr)    edge(1, 5, arr)    edge(1, 2, arr)    edge(3, 5, arr)    edge(1, 3, arr) output: 1 2 3 4 5Instead of doing a normal DFS, first we will sort the edges associated with each vertex, so that in each turn only the ... Read More

Select Value in Custom Order from Another Column in MySQL

AmitDiwan
Updated on 22-Aug-2019 07:35:16

151 Views

For this, you can use IN().Let us first create a table:mysql> create table DemoTable727 (    Name varchar(100),    Score int ); Query OK, 0 rows affected (0.88 sec)Insert some records in the table using insert command:mysql> insert into DemoTable727 values('Chris', 45); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable727 values('Robert', 89); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable727 values('Carol', 94); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable727 values('David', 93); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable727 values('Mike', 78); Query OK, 1 row affected (0.21 ... Read More

Replace Date Format with MySQL STR_TO_DATE

AmitDiwan
Updated on 22-Aug-2019 07:33:37

471 Views

Let us first create a table −mysql> create table DemoTable(DueDate varchar(100)); Query OK, 0 rows affected (0.78 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values('10-01-2019 10:19:20'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('12-03-2018 11:00:00'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('02-23-2018 04:20:40'); Query OK, 1 row affected (0.19 sec)Display all records from the table using select statement −mysql> select *from DemoTable;This will produce the following output −+---------------------+ | DueDate             | +---------------------+ | 10-01-2019 10:19:20 | | 12-03-2018 11:00:00 ... Read More

Sort Varchar Numeric Columns in MySQL

AmitDiwan
Updated on 22-Aug-2019 07:33:35

553 Views

Let us first create a table −mysql> create table DemoTable726 (Value varchar(100)); Query OK, 0 rows affected (0.60 sec)Insert some records in the table using insert command −mysql> insert into DemoTable726 values('100'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable726 values('10'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable726 values('110'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable726 values('2000'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable726 values('1000'); Query OK, 1 row affected (0.14 sec)Display all records from the table using select statement −mysql> select *from DemoTable726;This will ... Read More

Can We Use Underscore in MySQL Table Name?

AmitDiwan
Updated on 22-Aug-2019 07:31:45

1K+ Views

You cannot give underscore in table name. If you still want to create a new table with underscore, surround it using backticks, not single quotes.However, let us first try to set quotes around a table name with underscore. Following is an example −mysql> create table 'Demo_Table725'(    ClientId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    ClientName varchar(100),    ClientAge int,    ClientCountryName varchar(100),    isMarried boolean );This will produce the following output i.e. an error since we haven’t used backtick −ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server ... Read More

MySQL Query to Select Bottom N Records

AmitDiwan
Updated on 22-Aug-2019 07:29:07

1K+ Views

Let us first create a table −mysql> create table DemoTable724 (Value int); Query OK, 0 rows affected (0.79 sec)Insert some records in the table using insert command −mysql> insert into DemoTable724 values(101); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable724 values(183); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable724 values(983); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable724 values(234); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable724 values(755); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable724 values(435); Query OK, 1 row affected (0.28 sec) mysql> ... Read More

Advertisements