PPT1 - SQL and Database - Introduction
PPT1 - SQL and Database - Introduction
Introduction
Praveen Kumar R
Agenda
▪ A bit of myself
▪ What is a Database?
▪ Types of Database
▪ What is SQL?
▪ Where is SQL used?
▪ Few Basic Queries
▪ Summary
Apart from the above ones, we also have NoSQL DBs, Centralized
DBs, Cloud DBs etc.
List of DQL:
SELECT: to retrieve data from the database.
mysql> SELECT
-> USER()
-> ,
-> CURRENT_DATE;
+--------------------+--------------+
| USER() | CURRENT_DATE |
+--------------------+--------------+
| joesmith@localhost | 1999-03-18 |
+--------------------+--------------+
mysql> SELECT
-> USER()
-> \c
mysql>