SQL Objective Questions and Answers
More interview questions and answers |
---|
1. true |
2 SQL can delete or update or retrieve or create records from a database |
1 |
1. used to select all records from table |
false |
4 None |
2. Select All records with different values only |
1. Select all records including with duplicate values |
4. select all records whose has office is ‘Lucknow’ from r4r_team table |
5. Error |
Error |
2. only >>> not used |
1. true |
4.1,2,3 |
1.These are Operators .Which are used to filter records based on more than one conditions |
1.Used to select username,exp, salary from r4r_team which is decreasing order by username. |
1. INSERT INTO r4r_team (id, username, exp) VALUES (1, ‘r4r01’, ‘2’); 2. INSERT INTO r4r_team VALUES (1, ‘r4r01’, ‘2’); |