-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathemployee.sql
173 lines (119 loc) · 6.36 KB
/
employee.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
CREATE DATABASE testdb; /* create database */
SHOW CREATE DATABASE testdb; /* reviews the existing created database */
USE testdb; /* select the newly database created by USE command */
CREATE TABLE Employee
(
EmployeeID int,
FirstName varchar(255),
LastName varchar(255),
Email varchar(255),
AddressLine varchar(255),
City varchar(255)
);
INSERT INTO Employee (EmployeeID, FirstName, LastName, Email, AddressLine, City)
VALUES ('101', 'Lucas', 'Santos', 'lucassantos@gmail.com', 'Brazil', 'Sao Paulo'),
('102', 'Carlos', 'Santiago', 'carlossantiago@gmail.com', 'Argentina', 'Buenos Aires'),
('103', 'Emanuel', 'DaSilva', 'emanueldasilva@gmail.com', 'Brazil', 'Rio Grande do Sul'),
('104', 'Abril', 'Rodriguez', 'abrilrodrigues@gmail.com', 'Argentina', 'Mendoza'),
('105', 'Carolina', 'Bentresca', 'carolinabentresca@gmail.com', 'Chile', 'Concepsion'),
('106', 'Carol', 'Santos', 'carolsantos@gmail.com', 'Chile', 'Santiago'),
('107', 'Gabriela', 'Lopez', 'Gabrielalopez@gmail.com', 'Brazil', 'Amazonas'),
('108', 'Michael', 'DeCarvalho', 'michaeldecarvalho@gmail.com', 'Brazil', 'Fortaleza'),
('109', 'George', 'Spencer', 'georgespencer@gmail.com', 'United Kingdom', 'London'),
('110', 'Christina', 'Diemert', 'christinadiemert@gmail.com', 'United States', 'California');
/* 1. From the following table return complete information about the employees */
SELECT * FROM Employee;
/* 2. From the following table, write a SQL query to find the cities of all employees. Return city. */
SELECT City FROM Employee;
/* 3. From the following table, write a SQL query to find the unique addressline of the employees. Return addressline. */
SELECT DISTINCT AddressLine
FROM Employee;
/* 4. From the following table, write a SQL query to return EmployeeID, FirstName, LastName, City and AddressLine. */
SELECT EmployeeID,
FirstName,
LastName,
City,
AddressLine
FROM Employee;
/* 5. From the following table, write a SQL query to count the number of characters except the spaces for each FirstName. Return FirstName length. */
SELECT length(trim(FirstName))
FROM Employee;
/* 6. From the following table, write a SQL query to count the number of characters except the spaces for each LastName. Return LastName length. */
SELECT length(trim(LastName))
FROM Employee;
/* 7. From the following table, write a SQL query to find the EmployeeID, FirstName, Email of all the employees. */
SELECT EmployeeID,
FirstName,
Email
FROM Employee;
/* 8. From the following table, write a SQL query to find the unique AddressLine with LastName. Return AddressLine and LastName */
SELECT DISTINCT AddressLine, LastName
FROM Employee;
/* 9. From the following table, write a SQL query to find those employees who do not belong to AddressLine Brazil. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine NOT IN ('Brazil');
/* 10. From the following table, write a SQL query to find those employees who do not belong to AddressLine Argentina. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine NOT IN ('Argentina');
/* 11. From the following table, write a SQL query to find those employees who EmployeeID's are before 105. Return complete information about the employees */
SELECT *
FROM Employee
WHERE EmployeeID<('105');
/* 12. From the following table, write a SQL query to find those employees who EmployeeID's are after 105. Return complete information about the employees */
SELECT *
FROM Employee
WHERE EmployeeID>('105');
/* 13. From the following table, write a SQL query to find those employees who EmployeeID's are before or equal to 105. Return complete information about the employees */
SELECT *
FROM Employee
WHERE EmployeeID<=('105');
/* 14. From the following table, write a SQL query to find those employees who EmployeeID's are after or equal to 105. Return complete information about the employees */
SELECT *
FROM Employee
WHERE EmployeeID>=('105');
/* 15. From the following table, write a SQL query to find those employees who EmployeeID is equal to 105. Return complete information about the employees */
SELECT *
FROM Employee
WHERE EmployeeID=('105');
/* 16. From the following table, write a SQL query to find the details of the employee ‘Carol’. */
SELECT *
FROM Employee
WHERE FirstName = 'Carol';
/* 17. From the following table, write a SQL query to find the FirstName of the employees whose length is six. Return employee FirstName. */
SELECT FirstName
FROM Employee
WHERE length(FirstName)=6;
/* 18. From the following table, write a SQL query to find the details of the employee LastName ‘Santos’. */
SELECT *
FROM Employee
WHERE LastName = 'Santos';
/* 19. From the following table, write a SQL query to find those employees whose AddressLine is ‘Brazil’. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine = 'Brazil';
/* 20. From the following table, write a SQL query to find those employees whose AddressLine is ‘Argentina’. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine = 'Argentina';
/* 21. From the following table, write a SQL query to find those employees whose AddressLine are either Brazil or Argentina. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine IN ('Brazil','Argentina');
/* 22. From the following table, write a SQL query to find those employees whose AddressLine are either Chile or United States. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine IN ('Chile','United States');
/* 23. From the following table, write a SQL query to find those employees whose AddressLine begin's with C. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine LIKE 'C%';
/* 24. From the following table, write a SQL query to find those employees whose AddressLine ends with l. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine LIKE '%l';
/* 25. From the following table, write a SQL query to find those employees whose AddressLine values with 'rg' in between. Return complete information about the employees. */
SELECT *
FROM Employee
WHERE AddressLine LIKE '%rg%';