Advertisement
Advertisement
SQL & Querying Quizzes, Questions & Answers
Recent SQL & Querying Quizzes
Questions: 40 | Attempts: 4638 | Last updated: Aug 22, 2025
-
Sample QuestionExamine this function: CREATE OR REPLACE FUNCTION CALC_PLAYER_AVG (V_ID in PLAYER_BAT_STAT.PLAYER_ID%TYPE) RETURN NUMBER IS V_AVG NUMBER; BEGIN SELECT HITS / AT_BATS INTO V_AVG FROM PLAYER_BAT_STAT WHERE PLAYER_ID = V_ID; RETURN (V_AVG); END; Which statement will successfully invoke this function in SQL *Plus?
Questions: 6 | Attempts: 1241 | Last updated: Mar 22, 2025
-
Sample QuestionIf you wanted to find research about either Australia or New Zealand which of the following search queries would be best?
Questions: 10 | Attempts: 367 | Last updated: Mar 21, 2025
-
Sample QuestionYou can filter a group of data in Data Model View?
Questions: 19 | Attempts: 151 | Last updated: Aug 23, 2025
-
Sample QuestionYour application must access data that is located on two SQL Server 2005 computers. One ofthese servers is named SQL1 and the other is SQL2. You have permissions to create a storedprocedure on SQL1 to support your application. However, on SQL2 you only have permissions to select data. You write the stored procedure on SQL1. The stored procedure accesses SQL2 byusing the OPENQUERY Transact-SQL statement. However, the query fails when executed. You need to troubleshoot the cause of the error. What should you do?
Questions: 10 | Attempts: 1144 | Last updated: Jul 22, 2025
-
Sample QuestionGive the correct expression operator - Numbers between 1 to 10.
Questions: 44 | Attempts: 885 | Last updated: Mar 22, 2025
-
Sample QuestionWhich of the following statemens are true?
Questions: 40 | Attempts: 1085 | Last updated: Mar 21, 2025
-
Sample Question) You issue the following select statement in Oracle: SQL> select e.empno, e.ename, d.loc from emp e, dept d where e.deptno = d.deptno and substr(e.ename,1,1) = 'S';Which of the following statements identifies an ANSI-compliant equivalent statement usable on the Oracle database?
Questions: 10 | Attempts: 4197 | Last updated: Mar 13, 2025
-
Sample QuestionExamine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25) Which three statements inserts a row into the table?
Questions: 20 | Attempts: 1543 | Last updated: Mar 20, 2025
-
Sample QuestionYou issue the following query: SELECT salary "Employee Salary" FROM employees; How will the column heading appear in the result?
Questions: 15 | Attempts: 1332 | Last updated: Mar 22, 2025
-
Sample QuestionWhich SELECT statement will the result 'ello world' from the string 'Hello World'?
Advertisement