-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobs.sql
76 lines (76 loc) · 1.12 KB
/
jobs.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
INSERT INTO jobs(
job_id, job_title, min_salary, max_salary
)
VALUES
(
'AD_PRES', 'President', 20080, 40000
),
(
'AD_VP', 'Administration Vice President',
15000, 30000
),
(
'AD_ASST', 'Administration Assistant',
3000, 6000
),
(
'FI_MGR', 'Finance Manager', 8200,
16000
),
(
'FI_ACCOUNT', 'Accountant', 4200,
9000
),
(
'AC_MGR', 'Accounting Manager', 8200,
16000
),
(
'AC_ACCOUNT', 'Public Accountant',
4200, 9000
),
(
'SA_MAN', 'Sales Manager', 10000,
20080
),
(
'SA_REP', 'Sales Representative',
6000, 12008
),
(
'PU_MAN', 'Purchasing Manager', 8000,
15000
),
(
'PU_CLERK', 'Purchasing Clerk', 2500,
5500
),
(
'ST_MAN', 'Stock Manager', 5500, 8500
),
(
'ST_CLERK', 'Stock Clerk', 2008, 5000
),
(
'SH_CLERK', 'Shipping Clerk', 2500,
5500
),
(
'IT_PROG', 'Programmer', 4000, 10000
),
(
'MK_MAN', 'Marketing Manager', 9000,
15000
),
(
'MK_REP', 'Marketing Representative',
4000, 9000
),
(
'HR_REP', 'Human Resources Representative',
4000, 9000
),
(
'PR_REP', 'Public Relations Representative',
4500, 10500
);