SQL Quiz 6
SQL Quiz 6
1. In EMP table, print SAL value as the cumulate in the EMPNO ascending sort order as example in the below.
2. In EMP table, print lowest salary among ‘SALESMAN’ employee ranks in order as example in the below.
1 | SELECT job, |
3. In EMP table, print lowest salary among ‘SALESMAN’ employee ranks in order as example in the below.
1 | SELECT job, |
4. In EMP table, print lowest salary among ‘SALESMAN’ employee ranks in order as example in the below.
1 | SELECT job, |
5. Print SQL to clone EMP table which for backup. (Table name is ‘EMP_BAK_TABLE)
1 | CREATE TABLE EMP_BAK_TABLE |