-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst_prac_sql.sql
More file actions
110 lines (109 loc) · 3.21 KB
/
first_prac_sql.sql
File metadata and controls
110 lines (109 loc) · 3.21 KB
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
CREATE DATABASE second;
USE second;
CREATE TABLE Employees (
employee_id INT PRIMARY KEY,
name VARCHAR(50),
age INT,
department VARCHAR(50)
);
INSERT INTO Employees (employee_id, name, age, department) VALUES
(1, 'John', 35, 'Sales'),
(2, 'Alice', 28, 'Marketing'),
(3, 'Bob', 40, 'HR'),
(4, 'Sarah', 33, 'Finance'),
(5, 'Michael', 25, 'Operations'),
(6, 'Emily', 29, 'Sales'),
(7, 'David', 42, 'HR'),
(8, 'Jessica', 31, 'Marketing'),
(9, 'Richard', 37, NULL),
(10, 'Michelle', 26, 'Finance'),
(11, 'Daniel', 34, 'Operations'),
(12, 'Laura', 38, 'Sales'),
(13, 'Mark', 27, NULL),
(14, 'Jennifer', 32, 'Marketing'),
(15, 'Andrew', 39, 'HR'),
(16, 'Elizabeth', 24, 'Finance'),
(17, 'Matthew', 30, 'Operations'),
(18, 'Samantha', 36, 'Sales'),
(19, 'Christopher', NULL, 'Marketing'),
(20, 'Stephanie', 41, 'HR'),
(21, 'Kevin', 29, 'Finance'),
(22, 'Amanda', 35, 'Operations'),
(23, 'Jason', 33, 'Sales'),
(24, 'Nicole', 28, 'Marketing'),
(25, 'Ryan', 39, 'HR'),
(26, 'Ashley', 27, NULL),
(27, 'Justin', 36, 'Finance'),
(28, 'Rachel', 31, 'Operations'),
(29, 'Eric', 40, 'Sales'),
(30, 'Megan', 25, 'Marketing'),
(31, 'Brandon', 37, 'HR'),
(32, 'Kimberly', 30, 'Finance'),
(33, 'Tyler', 24, 'Operations'),
(34, 'Heather', 38, 'Sales'),
(35, 'Jeffrey', 31, 'Marketing'),
(36, 'Melissa', 40, 'HR'),
(37, 'Scott', 26, 'Finance'),
(38, 'Tiffany', 35, 'Operations'),
(39, 'Joshua', 33, 'Sales'),
(40, 'Lauren', 29, 'Marketing'),
(41, 'Brian', 42, 'HR'),
(42, 'Christina', 27, 'Finance'),
(43, 'Kyle', 34, 'Operations'),
(44, 'Victoria', 39, 'Sales'),
(45, 'Nathan', 28, 'Marketing'),
(46, 'Amy', 36, 'HR'),
(47, 'Patrick', 25, 'Finance'),
(48, 'Kelly', 30, 'Operations'),
(49, 'Adam', 37, 'Sales'),
(50, 'Christine', 31, 'Marketing'),
(51, 'Gregory', 40, 'HR'),
(52, 'Maria', 26, 'Finance'),
(53, 'Jonathan', 38, 'Operations'),
(54, 'Lisa', 32, 'Sales'),
(55, 'Shawn', 29, 'Marketing'),
(56, 'Julie', 41, 'HR'),
(57, 'Stephen', 27, 'Finance'),
(58, 'Jamie', 34, 'Operations'),
(59, 'Rebecca', 39, 'Sales'),
(60, 'Aaron', NULL, 'Marketing'),
(61, 'Jacqueline', 35, 'HR'),
(62, 'Derek', 30, 'Finance'),
(63, 'Hannah', 24, 'Operations'),
(64, 'Edward', 37, 'Sales'),
(65, 'Cassandra', 31, 'Marketing'),
(66, 'Alexander', 40, 'HR'),
(67, 'Kristen', 26, 'Finance'),
(68, 'Zachary', 38, 'Operations'),
(69, 'April', 32, 'Sales'),
(70, 'Jeremy', 29, 'Marketing'),
(71, 'Katherine', 41, 'HR'),
(72, 'Dylan', 27, 'Finance'),
(73, 'Lindsay', 34, 'Operations'),
(74, 'Travis', 39, 'Sales'),
(75, 'Allison', 25, 'Marketing'),
(76, 'Phillip', 42, 'HR'),
(77, 'Kelsey', 28, 'Finance'),
(78, 'Cody', 36, 'Operations'),
(79, 'Bethany', 33, 'Sales'),
(80, 'Wesley', 30, 'Marketing'),
(81, 'Monica', 41, 'HR'),
(82, 'Brett', 26, 'Finance'),
(83, 'Tara', 35, 'Operations'),
(84, 'Gerald', 31, 'Sales'),
(85, 'Erin', 40, 'Marketing'),
(86, 'Donald', 27, 'HR'),
(87, 'Pamela', 38, 'Finance'),
(88, 'Logan', 32, 'Operations'),
(89, 'Christine', 39, 'Sales'),
(90, 'Justin', 25, 'Marketing'),
(91, 'Anna', 42, 'HR'),
(92, 'Bryan', 28, 'Finance'),
(93, 'Leah', 36, 'Operations'),
(94, 'Keith', 33, 'Sales'),
(95, 'Caitlin', 29, 'Marketing'),
(96, 'Alexander', 40, 'HR'),
(97, 'Cassandra', 27, 'Finance'),
(98, 'Jared', 34, 'Operations'),
(99, 'Tiffany', 39, 'Sales'),
(100, 'Joshua', 31, 'Marketing');