-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBasic SQL Queries.sql
87 lines (62 loc) · 1.66 KB
/
Basic SQL Queries.sql
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
--Delete the table
DROP TABLE student;
-- create the table
CREATE TABLE student (
student_id INT PRIMARY KEY,
name VARCHAR(20),
major VARCHAR(20)
);
-- display its attributes
DESCRIBE student;
--delete table
DROP TABLE student;
-- Alter table adding a new column
ALTER TABLE student ADD gpa DECIMAL(3,2);
DESCRIBE student;
ALTER TABLE student DROP COLUMN gpa;
DESCRIBE student;
-- Displaying all the data of the table
SELECT * FROM student;
--Intserting into the table
INSERT INTO student VALUES(1,'Jack','Biology');
INSERT INTO student VALUES(2,'Kate','Sociology');
INSERT INTO student VALUES(3,'Claire','Chemistry');
INSERT INTO student VALUES(4,'Jack','Biology');
INSERT INTO student VALUES(5,'Mike','Computer Science');
INSERT INTO student(name,major) VALUES('Jack','cs');
INSERT INTO student(name,major) VALUES('Jac','cs');
-- updating values in the table with a particular condition
UPDATE student
SET major='Comp Sci'
WHERE student_id=4;
UPDATE student
SET major='Biochemistry'
WHERE major='Biology' OR major='Chemistry';
UPDATE student
SET name='Tom',major='undicided'
WHERE student_id=1;
SELECT * FROM student;
UPDATE student
SET major='undicided';
-- deleteing particular value from the table
DELETE FROM student
WHERE student_id=5;
DELETE FROM student
WHERE name='Tom'AND major='undicided';
SELECT student.name,student.major
FROM student
ORDER BY student_id ASC;
SELECT *
FROM student
ORDER BY major, student_id;
SELECT *
FROM student
ORDER BY name DESC
LIMIT 2;
SELECT name,major
FROM student
WHERE major<>'Biology' OR major='Chemistry' OR name='Kate';
-- comments <>-NOt EQual
SELECT name,major
FROM student
WHERE name IN('Kate','Claire','Mike');