-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLQuery11.sql
39 lines (36 loc) · 919 Bytes
/
SQLQuery11.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
CREATE DATABASE ipl;
USE ipl
CREATE TABLE ipl_information(
Years INT,
Winners_Team VARCHAR(100),
);
SELECT*FROM ipl_information
INSERT INTO ipl_information
VALUES
(2008, 'Rajasthan'),
(2009, 'Deccan Chargers'),
(2010, 'Chennai Super Kings'),
(2011, 'Kolkata Knight Riders'),
(2013, 'Mumbai Indians'),
(2014, 'Kolkata Riders'),
(2015, 'chennai super king')
SELECT*FROM ipl_information
ALTER TABLE ipl_information
ADD
Runner_up VARCHAR(100),
Final_match_venue VARCHAR(100),
Captain VARCHAR(90)
SELECT*FROM ipl_information
UPDATE ipl_information
SET
Runner_up ='Rohit',
Final_match_venue = 'bangalore',
Captain = 'Dhoni'
WHERE YEAR = 2010;
SELECT*FROM ipl_information
ALTER TABLE ipl_information
DROP COLUMN Years
SELECT*FROM ipl_information
DELETE FROM ipl_information
WHERE FROM Winners_Team = 'deccan chargers'
SELECT*FROM ipl_information