Don’t worry, unlock all articles / blogs on PrepInsta by just simply logging in on our website
Type atleast 3 characters
Popular Searches
Trending Pages
Notifications Mark All Read
No New notification
IBM Menu9>
PREPINSTA PRIME
Get Hiring Updates right in your inbox from PrepInsta
Question 1
SELECT ID, name, dept name, salary * 1.1
WHERE instructor;
Salary*1.1
ID
Where
Instructor
Start
Question 2
SELECT name, course_id
FROM instructor, teaches
WHERE instructor_ID= teaches_ID;
Select name,course_id from teaches,instructor where instructor_id=course_id;
Select name, course_id from instructor natural join teaches;
Select name, course_id from instructor;
Select course_id from instructor join teaches;
Question 3
Select * from emp where empid = 10003;
Select empid from emp where empid = 10006;
Select empid from emp;
Select empid where empid = 1009 and lastname = ‘GELLER’; View Answer
Question 4
INSERT INTO employee _____ (1002,Joey,2000);
Table
Values
Relation
Field
Question 5
select emp_name from dept where dept_no and location='Mumbai';
select emp_name from emp where salary > 20,000 and dept_no in (select dept_no from dept where location = 'Mumbai');
select dept_no ,count(emp_no) from emp where salary > 50,000 group by dept_no;
update table emp where emp_name='Mumbai';
Question 6
The AS SQL clause is used to change the name of a column in the result set or to assign a name to a derived column
The AS clause is used with the JOIN clause only
The AS clause defines a search condition
All of the mentioned
Question 7
ALTER TABLE
MODIFY TABLE
CHANGE TABLE
All of the above
Question 8
SELECT Username, AND Password FROM Users
SELECT Username,Password from Users
SELECT Username,Password WHERE Username='user1'
None of these
Question 9
Specify what table we are selecting or deleting data FROM
specify range for search condition
specify search condition
Question 10
view
A relation
Just another table
Query results
Please login to report