1Z0-909 Exam Questions
65 real 1Z0-909 exam questions with expert-verified answers and explanations. Page 2 of 2.
- Question #51Application Development
Examine the employee table structure: Which set of statements immediately returns empname for a given emp_id by using a parameterized prepare statement? A. B. C. D.
prepared statementsPREPAREEXECUTEparameterized queries - Question #52SQL Fundamentals
You must write a statement that combines the first_name and last_name columns from the employees table as "last_name, first_name." Which two statements will do this?
string concatenationCONCAT functionCONCAT_WS functionSQL functions - Question #53Performance
Examine this statement that execute successfully in an interactive session: The user running this session now goes to lunch for an hour. Now, examine these statements executed inde...
Session locksTransaction blockingLock typesExecution behavior - Question #54JSON
Examine these MySQL Shell statements: What is the true about the attempts to add document to the collection?
MySQL ShellDocument CollectionsSchema FlexibilityJSON Documents - Question #55JSON
Examine this table definition: The table must always remain a valid document store collection. What restriction does this impose on any added column?
JSON document storagegenerated columnscollection constraintsdocument validation - Question #56Security
Examine this statement and output: What causes the error?
LOCAL_INFILEfile permissionsserver process privilegesprivilege hierarchy - Question #57SQL Fundamentals
The meeting table stores meeting schedules with participants from five continents. The participants' details are stored in another table. You need to adjust the start_time and dura...
datatypestemporal datastorage optimizationschema design - Question #58SQL Fundamentals
The continent column in the country table contains no null values. Examine this output: A. B. C. D.
NULL handlingaggregationGROUP BYcolumn constraints - Question #59SQL Fundamentals
Examine this SQL statement:
Parameter BindingSELECT statementWHERE clauseSQL Injection Prevention - Question #60SQL Fundamentals
Examine these statements and output: Now, examine this command: Mysql> ROLLBACK; What is true about the effect of the command?
TransactionsROLLBACKDML OperationsTransaction Control - Question #61Advanced SQL
You must reclaim memory used by a prepared statement named prep. Which two achieve this?
Prepared StatementsMemory ManagementResource DeallocationDatabase Objects - Question #62Stored Programs
The employee table includes these columns: e_id INT, e_name VARCHAR (45), dept_id INT salart INT You must create a stored function, getMaxSalary(), which returns the maximum salary...
stored functionCREATE FUNCTIONMAX()RETURNS - Question #63SQL Fundamentals
Which two statements are true about aggregate functions?
aggregate functionsNULL handlingfunction behaviorCOUNT/AVG/SUM/MAX/MIN - Question #64Application Development
A server hosts MySQL Server and Apache Webserver supporting a PHP/PDO based application. The application must be migrated from PHP to their Java application server on another host....
MySQL Connector/JUnix SocketJava Database ConnectivityDriver Implementation - Question #65Stored Programs
The variables c and d are declared as integer types. Examine these initialization statements with placeholder value <p1>, which execute successfully: Now, examine this loop which e...
stored program loopsinteger variablesWHILEloop equivalence