-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lecture1.txt
27 lines (23 loc) · 916 Bytes
/
Lecture1.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Lecture-1:
Introduction to SQL:
SQL: It is Structure Query Language. It is used to access or manipulate data in database.
Database: It is used to store our data.
a) RDBMS (Data stores Row & Column wise)
b) MySQL (Oriented Database)
Uses of SQL/Advantages of SQL:
1. Used to access data from database
2. Used to add data from database
3. Used to remove data from database
4. Used in backend part of various project
5. Used to make access permission
6. Used to create table
7. Database
8. Views
Important Points:
1. SQL is not a case sensitive.
i) Example: SELECT *(or “column_name”) FROM CUSTOMER
select *(or “column_name”) from customer
Select *(or “column_name”) From Customer
2. In SQL, after query end used semi-colon (;).
ii) Example: select *(or “column_name”) from customer;
-------×-------