SQL

SQL

University - Professional Development

28 Qs

quiz-placeholder

Similar activities

UJIAN MID SEMESTER 1 XI RPL BASIS DATA

UJIAN MID SEMESTER 1 XI RPL BASIS DATA

University

30 Qs

25 JUNE 21 DBMS FOR COE 6:30 TO 7:30 PM

25 JUNE 21 DBMS FOR COE 6:30 TO 7:30 PM

University

24 Qs

DBMS Quiz CSE

DBMS Quiz CSE

University

30 Qs

Microsoft Technical Round - MCQ Round

Microsoft Technical Round - MCQ Round

University

30 Qs

Technical Quiz WCC

Technical Quiz WCC

University

30 Qs

SQL_kartkowka

SQL_kartkowka

1st Grade - University

27 Qs

TURBO SQL Grundlagen

TURBO SQL Grundlagen

Professional Development

23 Qs

Quiz - Database Technology - Session 9 (Odd Semester 2023/2024)

Quiz - Database Technology - Session 9 (Odd Semester 2023/2024)

University

23 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?