-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLQuery1.sql
54 lines (51 loc) · 1.34 KB
/
SQLQuery1.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
CREATE DATABASE Students
USE Students
CREATE TABLE StudentsDetails(
StudentId int,
studentName VARCHAR(100),
StudentCourse VARCHAR(100),
StudentCity VARCHAR(50)
);
SELECT*FROM StudentsDetails
INSERT INTO studentsDetails (StudentId, studentName,StudentCourse, StudentCity)
VALUES
(1, 'Abhishek', 'Python', 'hebbal'),
(2, 'vikas', 'java', 'Chennai'),
(3, 'Rishav', 'React', 'Marthali'),
(4, 'Ayush', 'Python', 'Hebbal'),
(5, 'Rahul', 'java', 'Electronic City'),
(6, 'sham', 'Deops', 'Electronic City'),
(7, 'Ajay', 'C++', 'Jpnagar');
SELECT*FROM StudentsDetails
--Add table
ALTER TABLE StudentsDetails
ADD
EmailId VARCHAR(100),
PlacementCompany VARCHAR(50)
UPDATE StudentsDetails
SET
EmailId= '[email protected]',
PlacementCompany = 'google'
WHERE StudentId= 1;
SELECT*FROM StudentsDetails
UPDATE StudentsDetails
SET
EmailId= '[email protected]',
PlacementCompany = 'amazon'
WHERE StudentId= 2;
SELECT*FROM StudentsDetails
UPDATE StudentsDetails
SET
EmailId= '[email protected]',
PlacementCompany = 'microsoft'
WHERE StudentId= 3;
SELECT*FROM StudentsDetails
UPDATE StudentsDetails
SET
EmailId= '[email protected]',
PlacementCompany = 'flipkart'
WHERE StudentId= 4;
SELECT*FROM StudentsDetails
--delete exiting table
ALTER TABLE StudentsDetails
DROP COLUMN LastName