Which of the following do you need to consider when you make a table in SQL? September 5, 2021September 5, 2021 administrator Which of the following do you need to consider when you make a table in SQL?All options are correctWell Done. Your Answer is Correct Keep it Up!Data typesPrimary keysDefault values
In an SQL SELECT statement querying a single table, according to the SQL-92 standard the asterisk (*) means that: September 5, 2021September 5, 2021 administrator In an SQL SELECT statement querying a single table, according to the SQL-92 standard the asterisk (*) means that:all columns of the table are to be returned.Well Done. Your Answer is Correct Keep it Up!all records meeting the full criteria are to be returned.all records with even partial criteria met are to be returnedNone of the options are correct
The HAVING clause does which of the following? September 5, 2021September 5, 2021 administrator The HAVING clause does which of the following?Acts like a WHERE clause but is used for groups rather than rows.Well Done. Your Answer is Correct Keep it Up!Acts like a WHERE clause but is used for rows rather than columns.Acts like a WHERE clause but is used for columns rather than groups.Acts EXACTLY like a WHERE clause.
A subquery in an SQL SELECT statement is enclosed in: September 5, 2021September 5, 2021 administrator A subquery in an SQL SELECT statement is enclosed in: parenthesis — (…).Well Done. Your Answer is Correct Keep it Up!brackets — […].CAPITAL LETTERS.braces — {…}.
The result of a SQL SELECT statement is a ______ September 5, 2021September 5, 2021 administrator The result of a SQL SELECT statement is a ______TABLEWell Done. Your Answer is Correct Keep it Up!REPORTFILEFORM
Which of the following must be enclosed in double-quotes? September 5, 2021September 5, 2021 administrator Which of the following must be enclosed in double-quotes?Column AliasWell Done. Your Answer is Correct Keep it Up!DatesStringAll options are correct
Which of the following command makes the updates performed by the transaction permanent in the database? September 5, 2021 administrator Which of the following command makes the updates performed by the transaction permanent in the database?COMMITWell Done. Your Answer is Correct Keep it Up!ROLLBACKTRUNCATEDELETE
The SQL statement – SELECT ROUND(45.926, -1) FROM DUAL; September 5, 2021September 5, 2021 administrator The SQL statement – SELECT ROUND(45.926, -1) FROM DUAL;prints 50Well Done. Your Answer is Correct Keep it Up!prints 045.926prints garbageis illegal
The SQL statement – SELECT SUBSTR(‘abcdefghij’, INSTR(‘123321234’, ‘2’, 3, 2), 2) FROM DUAL; Prints September 5, 2021September 5, 2021 administrator The SQL statement – SELECT SUBSTR(‘abcdefghij’, INSTR(‘123321234’, ‘2’, 3, 2), 2) FROM DUAL; PrintsghWell Done. Your Answer is Correct Keep it Up!23bcab
Table Employee has 10 records. It has a non-NULL SALARY column which is also UNIQUE. So, What the below SQL statement will return: SELECT COUNT(*) FROM Employee WHERE SALARY > ANY (SELECT SALARY FROM EMPLOYEE); September 5, 2021September 5, 2021 administrator Table Employee has 10 records. It has a non-NULL SALARY column which is also UNIQUE. So, What the below SQL statement will return: SELECT COUNT(*) FROM Employee WHERE SALARY > ANY (SELECT SALARY FROM EMPLOYEE);9Well Done. Your Answer is Correct Keep it Up!5100