'AS' clause is used in SQL for Selection operation. Join operation. Rename operation. Projection operation. TRUE ANSWER : ? YOUR ANSWER : ?
Find the names of these cities with temperature and condition whose condition is neither sunny nor cloudy SELECT city, temperature, condition FROM weather WHERE condition NOT BETWEEN ('sunny', 'cloudy'); SELECT city, temperature, condition FROM weather WHERE condition NOT IN ('sunny', 'cloudy'); SELECT city, temperature, condition FROM weather WHERE condition IN ('sunny', 'cloudy'); SELECT city, temperature, condition FROM weather WHERE condition BETWEEN ('sunny', 'cloudy'); TRUE ANSWER : ? YOUR ANSWER : ?
Count function in SQL returns the number of values. columns. groups. distinct values. TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following query is correct for using comparison operators in SQL? SELECT name, course_name FROM student WHERE age>50 and WHERE age<80; SELECT name, course_name FROM student WHERE age>50 and age <80; None of these SELECT name, course_name FROM student WHERE age>50 and <80; TRUE ANSWER : ? YOUR ANSWER : ?
Which SQL statement is used to delete data FROM a database? COLLAPSE REMOVE ALTER DELETE TRUE ANSWER : ? YOUR ANSWER : ?
The HAVING clause does which of the following? Acts EXACTLY like a WHERE clause. Acts like a WHERE clause but is used for columns rather than groups. Acts like a WHERE clause but is used for groups rather than rows. Acts like a WHERE clause but is used for rows rather than columns. TRUE ANSWER : ? YOUR ANSWER : ?
To remove duplicate rows from the results of an SQL SELECT statement, the ________ qualifier specified must be included. ONLY DISTINCT UNIQUE SINGLE TRUE ANSWER : ? YOUR ANSWER : ?
When three or more AND and OR conditions are combined, it is easier to use the SQL keyword(s): NOT IN only. IN only. Both IN and NOT IN. LIKE only. TRUE ANSWER : ? YOUR ANSWER : ?
Which SQL keyword is used to retrieve only unique values? DISTINCT DISTINCTIVE DIFFERENT UNIQUE TRUE ANSWER : ? YOUR ANSWER : ?
If a query involves NOT, AND, OR with no parenthesis NOT will be evaluated first; OR will be evaluated second; AND will be evaluated last. The order of occurrence determines the order of evaluation. AND will be evaluated first; OR will be evaluated second; NOT will be evaluated last. NOT will be evaluated first; AND will be evaluated second; OR will be evaluated last. TRUE ANSWER : ? YOUR ANSWER : ?