------------------------------------------------------- 51.(12-10)choose the best answer: Evaluate the following SQL statement: SQL> SELECT cust_id, cust_last_name FROM customers WHERE cust_credit_limit IN (select cust_credit_limit FROM customers WHE…
Student表: select * from student; 课程表Course: select * from course; 教师表teacher: select * from teacher; 成绩表Score: select * from sc; 1.查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数 select c.*, a.score from sc a, sc b, student c and a.score>b.score;…
choose one In your Oracle 12c database, you plan to execute the command: SQL> CREATE TABLESPACE tbsl DATAFILE '/u02/oracle/data/tbs0l.dbf' SIZE 50M; The u02 file system has 1 GB of free space available. What is the outcome? A) It raises an error beca…
3.A database is open read write and the instance has multiple sessions some of which have active transactions. You execute this command: SQL> ALTER SYSTEM ENABLE RESTRICTED SESSION; Which three are true about the active transactions? A) They may cont…
80.View the exhibit and examine the structure in ORDERS and ORDER_ITEMS tables. You need to create a view that displays the ORDER_ID, ORDER_DATE, and the total number of items in each order. Which CREATE VIEW statement would create the views successf…
79.Which statement is true about transactions? A. A set of Data Manipulation Language (DML) statements executed in a sequence ending with a SAVEPOINT forms a single transaction. B. Each Data Definition Language(DDL) statement executed forms a single…
78.View the exhibit and examine the structure of the CUSTOMERStable. Which two tasks would require subqueries or joins to be executed in a single statement? A. finding the number of customers, in each city, whose credit limit is more than the average…
77.Which two statements are true about sequences created in a single instance database? (Choose two.) A. When the MAXVALUElimit for the sequence is reached, you can increase the MAXVALUElimit by using the ALTER SEQUENCEstatement. B. DELETE < sequence…