SQL

SQL

University - Professional Development

28 Qs

quiz-placeholder

Similar activities

SQL part 2

SQL part 2

Professional Development

24 Qs

MID SEMESTER TEST

MID SEMESTER TEST

University

30 Qs

subquery

subquery

University

26 Qs

Technical Quiz WCC

Technical Quiz WCC

University

30 Qs

Query database aset

Query database aset

University

25 Qs

SQL_kartkowka

SQL_kartkowka

1st Grade - University

27 Qs

SQL Quiz

SQL Quiz

University

30 Qs

SQL-ə Giriş və Verilənlər Bazası Əsasları (51 - 80)

SQL-ə Giriş və Verilənlər Bazası Əsasları (51 - 80)

Professional Development

30 Qs

SQL

SQL

Assessment

Quiz

Computers

University - Professional Development

Hard

Created by

Muralidhara Srirama

Used 49+ times

FREE Resource

28 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

1 min • 1 pt

ALTER TABLE TABELNAME CHANGE

NEWCOLNAME NEWDATATYPE

NEWCOLNAME OLDDATATYPE

OLDCOLNAME NEWCOLNAME NEWDATATYPE

OLDCOLNAME NEWCOLNAME OLDDATATYPE

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is def in the following statement?

CREATE TRIGGER abc (...) (...) ON def FOR EACH ROW ghi;

trigger name

table name

trigger statement

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

The salary of managers has been increased by 20%. Retrieve the empid, existing salary as "Current Salary", increased salary as "New Salary" and the difference of existing and increased salary as "Incremented Amount". Round off the increased salary up to two decimal places.

select empid,round(salary,0) as "Current Salary", round(salary*1.20,2) as "New Salary",round(salary*0.20,2) as "Incremented Amount" from empdetails where Designation='Manager';

select empid,round(salary,2) as "Current Salary", round(salary*0.20,2) as "New Salary",round(salary*0.20,2) as "Incremented Amount" from empdetails where Designation='Manager';

select empid,round(salary,2) as "Current Salary", round(salary*1.20,2) as "New Salary",round(salary*0.20,2) as "Incremented Amount" from empdetails where Designation='Manager';

select empid,round(salary,2) as "Current Salary", round(salary*1.20,2) as "New Salary",round(salary*1.20,2) as "Incremented Amount" from empdetails where Designation='Manager';

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Display the itemcode of those items where the difference of quantity on hand and reorder level is more than 50. Convert the result of difference to positive values.

Select itemcode from item where abs(Qtyonhand-reorderlevel)>=50;

Select itemcode from item where round(Qtyonhand-reorderlevel)>=50;

Select itemcode from item where Qtyonhand-reorderlevel>50;

Select itemcode from item where abs(Qtyonhand-reorderlevel)>50;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Retrieve the itemcode and average of quantity available in retail outlets where the average of quantity available is less than 75.

select itemcode,avg(qtyavailable) "Average Quantity" from retailstock group by itemcode having avg(qtyavailable)>75;

select itemcode,avg(qtyavailable) "Average Quantity" from retailstock group by itemcode having count(qtyavailable)<75;

select itemcode,avg(qtyavailable) "Average Quantity" from retailstock group by itemcode having avg(qtyavailable)<75;

select itemcode,avg(qtyavailable) "Average Quantity" from retailstock group by itemcode having avg(qtyavailable)<=75;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Display pymtmode, and total number of payments for those payments which were paid before the year 2015 and total number of payments should be more than 1.

select pymtmode,sum(pymtmode) as PYMTCOUNT from orders where extract(year from pymtdate)<2015 group by pymtmode having count(pymtmode)>1;

select pymtmode,count(pymtmode) as PYMTCOUNT from orders where extract(year from pymtdate)<2015 group by pymtmode having count(pymtmode)>1;

select pymtmode,count(pymtmode) as PYMTCOUNT from orders where extract(year from pymtdate)<2015 group by pymtmode having count(pymtmode)>=1;

select pymtmode,count(pymtmode) as PYMTCOUNT from orders where extract(year from pymtdate)<=2015 group by pymtmode having count(pymtmode)>1;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Retrieve the itemcode, descr and unit price of the items which have 'Shirt' or 'Skirt' in their desc and their category is 'B'.

select Itemcode,Descr,Price from Item where (Descr LIKE '%Shirt%' or Descr LIKE '%Skirt%') and Category='B';

select Itemcode,Descr,Price from Item where (Descr LIKE '%Shirt%' or Descr LIKE '%Skirt%') and Category<='B';

select Itemcode,Descr,Price from Item where (Descr LIKE '%Shirt%' or Descr LIKE '%Skirt%') and Category<>'B';

select Itemcode,Descr,Price from Item where (Descr LIKE '%Shirt%' or Descr LIKE '%Skirt%') and Category lIKE 'B';

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?