Tag: databases
Questions Related to databases
What is the output of the Query: select * from emp where dept_no in (select dept_no from dept order by dept_no desc);
Select employee name whose job is 'Manager' or 'Clerk', Salary greater than 1000, comm >100 and deptno is either 10 or 20
What happens if we execute the below create table query at first time in a database with other than sys user and the user is having create table privileges: create table dual(a number);