Given two tables Student(SID, Name, Course) and Level(SID,
level) write the SQL statement to get the name and SID of
the student who are taking course = 3 and at freshman level.
Answer Posted / nagendra
select e.sid, e.name from student e, level d where e.course
= 3 and d.level = 'FISHERMAN'
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What does the hierarchical profiler does?
Why is nosql good?
Mention what plvcmt and plvrb does in pl/sql?
how do you control the max size of a heap table? : Sql dba
Which software is used for pl sql programming?
What is the starting oracle error number? What is meant by forward declaration in functions?
How to select all records from the table?
Which command is used to delete a package?
How do I run a script in sql developer?
Can sql developer connect to db2?
First round ------------------- - Procedure - Packages - Views - Virtual tables - Can we use dcl with in function? - Joins and few scenarios - Triggers and its type - Pragma, type and its functionality - How to create db link in oracle - Materialized view - How to find duplicate values from table? - Cursor and its functionality - Write a script to display friday and its date from a entire year. - Exception Handling Second round ------------------------ Gave a scenario like. Need to write a function to perform. When user try to change a password. It must not be last five password and a given password can be combination of characters, symbols, upper and lower case.
Can a foreign key have a different name?
Is a table valued function object?
What is data types in sql?
What is keys and its types?