
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
3K+ Views
Let us first create a table −mysql> create table DemoTable805(LoginDate datetime); Query OK, 0 rows affected (0.63 sec)Insert some records in the table using insert command −mysql> insert into DemoTable805 values('2019-01-31 12:45:20'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable805 values('2017-11-01 10:20:30'); Query OK, 1 row affected ... Read More

AmitDiwan
159 Views
Let us first create a table −mysql> create table DemoTable774 ( Id int, FirstName varchar(100), MatchId int ); Query OK, 0 rows affected (0.62 sec)Insert some records in the table using insert command −mysql> insert into DemoTable774 values(101, 'Chris', 104); Query ... Read More

AmitDiwan
424 Views
For this, you need to use ORDER BY to order records. With that use RAND() to get random records and LIMIT 5 since we want to display only 5 random records.Let us first create a table −mysql> create table DemoTable773 (StudentId int); Query OK, 0 rows affected (0.59 sec)Insert some ... Read More

AmitDiwan
349 Views
To find alternative records from a table, you need to use the OR condition as in the below syntax −select *from yourTableName where yourColumnName=yourValue1 OR yourColumnName=yourValue2…...N;Let us first create a table −mysql> create table DemoTable772 ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Name ... Read More

AmitDiwan
116 Views
Use BETWEEN to find the date and time between joining and relieving date. NOW() is used to get the current date and time for comparison.Let us first create a table −mysql> create table DemoTable771 ( Joiningdate datetime, Relievingdate datetime ); Query OK, 0 rows ... Read More

AmitDiwan
1K+ Views
Let us first create a table −mysql> create table DemoTable770 ( Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, Value int ); Query OK, 0 rows affected (0.65 sec)Insert some records in the table using insert command −mysql> insert into DemoTable770(Value) values(10); Query OK, 1 ... Read More

AmitDiwan
4K+ Views
To set country code to phone numbers would mean to concatenate. You can use CONCAT() for this.Let us first create a table −mysql> create table DemoTable769 (MobileNumber varchar(100)); Query OK, 0 rows affected (0.54 sec)Insert some records in the table using insert command −mysql> insert into DemoTable769 values('8799432434'); Query OK, ... Read More

AmitDiwan
204 Views
Find NULL values using the IS NULL and update the new values using MySQL UPDATE and SET −update yourTableName set yourColumnName=yourValue where yourColumnName IS NULL;Let us first create a table −mysql> create table DemoTable768 ( Clientid int NOT NULL AUTO_INCREMENT PRIMARY KEY, ClientName varchar(100), ClientAge int ); ... Read More

AmitDiwan
4K+ Views
For this, you can use LPAD() and pad a value on the left.Let us first create a table −mysql> create table DemoTable767 (Value varchar(100)); Query OK, 0 rows affected (1.40 sec)Insert some records in the table using insert command −mysql> insert into DemoTable767 values('4'); Query OK, 1 row affected (0.15 ... Read More

AmitDiwan
2K+ Views
For this, you need to perform concatenation using CONCAT().Let us first create a table −mysql> create table DemoTable766 (Name varchar(100)); Query OK, 0 rows affected (0.65 sec)Insert some records in the table using insert command −mysql> insert into DemoTable766 values('John'); Query OK, 1 row affected (0.12 sec) mysql> insert into ... Read More