Create a package which contains function to ask the user to enter the student’s marks and determine the GRADE according to the following criteria. >90 A >80AND <90 B >70AND <80 C >60 AND<70 D <60 F
Home/Computer Science/DBMS/Page 12
SIKSHAPATH Latest Questions
AK
Asked: November 15, 2021In: DBMS
Create table named emp have two column id and salary with number datatype. Insert the value into the table created using procedures.
practice503
Asked: November 15, 2021In: DBMS
Create a trigger that checks if “value” is greater than 1000 for any new row inserted to “Test” table, then insert a row to Audit table?
A.S
Asked: November 15, 2021In: DBMS
Write a trigger to ensure that no employee of age less than 25 can be inserted in the database.
A.S
Asked: November 15, 2021In: DBMS
Apply a trigger on relation client (sno, fname, lname, eid, and password) on attributes fname and password after/before delete or update these columns. The trigger should insert the old or deleted values from both these columns into a new table ...
ANAN
Asked: November 14, 2021In: DBMS
Create a package with procedure that shows the usage of the WHILE loop to calculate the average of input numbers.