0% found this document useful (0 votes)
76 views3 pages

MySQL Employee Table Creation and Query

Uploaded by

lingasodana25
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Topics covered

  • database management,
  • table structure,
  • employee_id,
  • SQL syntax,
  • data structure,
  • data entry,
  • conditional selection,
  • SQL learning resources,
  • job roles,
  • query optimization
0% found this document useful (0 votes)
76 views3 pages

MySQL Employee Table Creation and Query

Uploaded by

lingasodana25
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Topics covered

  • database management,
  • table structure,
  • employee_id,
  • SQL syntax,
  • data structure,
  • data entry,
  • conditional selection,
  • SQL learning resources,
  • job roles,
  • query optimization

f- C ~o [Link]/mysql/42555j3vm * t O .

±, :
II OneCompiler Q. (} STUDIO CHALLENGES ORGS MORE LOGIN

[Link] I
+ 42555j3vm ~•
NEW i i f f i - ) f i ii·iii I
1 CREATE TABLE Employee ( STDIN
2 employee_id INT,
3 salary DECIMAL(10, 2), Input for the program (Optional)
4 job_id VARCHAR(50)
5 );
6
7 INSERT INTO Employee (employee_id, salary, job_id) VALUES Output:
8 (1, 50000.00, 'CLERK'), ,,m
9 (2, 60000.00, 'CLERK'), +-------------+----------+--------+ m
0
10 (3, 45000.00, 'CLERK'), I employee_id I salary I job_id I ClJ

11 (4, 70000.00, 'CLERK'), +-------------+----------+--------+


f)
;;,;:
12 (5, 55000.00, 'CLERK'), 1 50000.00 CLERK
13 (6, 48000.00, 'CLERK'); 2 60000.00 CLERK
14 3 45000.00 CLERK
15 select* from Employee; 4 70000.00 CLERK
16 I 5 55000.00 CLERK
6 48000.00 CLERK
+-------------+----------+--------+

created 2 years ago

MySQL online editor


Write, Run & Share MySQL queries on line using OneCompiler's MySQL online editor and compiler for free. It's one of the robust, feature-rich on line
editor and compiler for MySQL. Getting started with the OneCompiler's MySQL editor is really simple and pretty fast. The editor shows sample
boilerplate code when you choose language as 'MySQt.: and start writing queries to learn and test online without worrying about tedious process of
installation.

AboutMySQL
f- C ~:;; [Link]/mysql/42555j3vm * t O .±, ·!" :

II OneCompiler Q. (> STUDIO CHALLENGES ORGS MORE LOGIN

[Link] I + 42555j3vm ~• NEW iiffi-!H I


1 CREATE TABLE Employee ( STDIN
2 employee_id INT,
3 salary DECIMAL(10, 2), Input for the program (Optional)
4 job_id VARCHAR(50)
5 );
6
7 INSERT INTO Employee (employee_id, salary, job_id) VALUES Output:
8 (1, 50000.00, 'CLERK'), "T1
rn
9 (2, 60000.00, 'CLERK'), +-------------+----------+ rn
0
10 (3, 45000.00, 'CLERK'), I employee_id I salary 0:,

11 (4, 70000.00, 'CLERK'), +-------------+----------+ fi


;;,:;
12 (5, 55000.00, 'CLERK'), 1 50000.00
13 (6, 48000.00, 'CLERK'); 2 60000.00
14 4 70000.00
15 5 55000.00
16 SELECT employee_id, salary 6 48000.00
17 FROM Employee +-------------+----------+
18 WHERE salary> ANY (SELECT salary FROM Employee WHERE job_id • 'CLERK');!

created 2 years ago

MySQL online editor


Write, Run & Share MySQL queries on line using OneCompiler's MySQL online editor and compiler for free. It's one of the robust, feature-rich on line
editor and compiler for MySQL. Getting started with the OneCompiler's MySQL editor is really simple and pretty fast. The editor shows sample
boilerplate code when you choose language as 'MySQL.: and start writing queries to learn and test online without worrying about tedious process of
installation.

AboutMySQL
f- C ~-;; [Link]/mysql/42555j3vm * t O .±, :
II OneCompiler Q_ (} STUDIO CHALLENGES ORGS MORE LOGIN

[Link] I
+ 42555j3vm ~•
NEW •;@ii I
1 CREATE TABLE Employee ( STDIN
2 employee_id INT,
3 salary DECIMAL(10, 2), Input for the program (Optional)
4 job_id VARCHAR(50)
5 );
6
7 INSERT INTO Employee (employee_id, salary, job_id) VALUES Output:
8 (1, 50000.00, 'CLERK'), "Tl
m
9 (2, 60000.00, 'CLERK'), +-------------+----------+ m
0
10 (3, 45000.00, 'CLERK'), I employee_id I salary ClJ

11 (4, 70000.00, 'CLERK'), +-------------+----------+


f)
A
12 (5, 55000.00, 'CLERK'), 1 50000.00
13 (6, 48000.00, 'CLERK'); 2 60000.00
14 4 70000.00
15 5 55000.00
16 SELECT employee_id, salary 6 48000.00
17 FROM Employee +-------------+----------+
18 WHERE salary> (SELECT mir@salaryl)I FROM Employee WHERE job_id • 'CLERK');

created 2 years ago

MySQL online editor


Write, Run & Share MySQL queries on line using OneCompiler's MySQL online editor and compiler for free. It's one of the robust, feature-rich on line
editor and compiler for MySQL. Getting started with the OneCompiler's MySQL editor is really simple and pretty fast. The editor shows sample
boilerplate code when you choose language as 'MySQt.: and start writing queries to learn and test on line without worrying about tedious process of
installation.

AboutMySQL

You might also like