0% found this document useful (0 votes)
206 views6 pages

120

The document is an 80-page training dump on Oracle9i questions and answers from Accenture. It contains questions on basic SELECT statements, capabilities of SQL statements like selection, projection and joins, and descriptions of SQL and iSQL*Plus commands. The questions have multiple choice answers on topics like selecting columns and rows from tables, linking data between tables, and functions of SQL versus iSQL*Plus.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
206 views6 pages

120

The document is an 80-page training dump on Oracle9i questions and answers from Accenture. It contains questions on basic SELECT statements, capabilities of SQL statements like selection, projection and joins, and descriptions of SQL and iSQL*Plus commands. The questions have multiple choice answers on topics like selecting columns and rows from tables, linking data between tables, and functions of SQL versus iSQL*Plus.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Accenture training 80 page dump http://www.scribd.

com/doc/47052938/Accenture-training-80-page-dump

Page 1 of 81
Introduction to Oracle9i Questions and Answers

Lesson 1: Basic SELECT Statement

1. The CUSTOMERS table has these columns:

CUSTOMER_ID NUMBER(4) NOT NULL


CUSTOMER_NAME VARCHAR2(100) NOT NULL
CUSTOMER_ADDRESS VARCHAR2(150)
CUSTOMER_PHONE VARCHAR2(20)

You need to produce output that states "Dear Customer customer_name, ".
The customer_name data values come from the CUSTOMER_NAME column in the
CUSTOMERS table.

Which statement produces this output?

A. SELECT dear customer, customer_name, FROM customers;


B. SELECT "Dear Customer", customer_name || ',' FROM customers;
C. SELECT 'Dear Customer ' || customer_name ',' FROM customers;
D. SELECT 'Dear Customer ' || customer_name || ',' FROM customers;
E. SELECT "Dear Customer " || customer_name || "," FROM customers;
F. SELECT 'Dear Customer ' || customer_name || ',' || FROM customers;

Answer: D

2. A SELECT statement can be used to perform these three functions:

1. Choose rows from a table.


2. Choose columns from a table
3. Bring together data that is stored in different tables by creating a link between
them.
Which set of keywords describes these capabilities?

A. difference, projection, join


B. selection, projection, join
C. selection, intersection, join
D. intersection, projection, join
E. difference, projection, product

Answer: B

3. Which statement correctly describes SQL and iSQL*Plus Commands?

A. Both SQL and iSQL*plus allow manipulation of values in the database.


B. iSQL*Plus recognizes SQL statements and sends them to the server; SQL is the
Oracle proprietary interface for executing SQL statements.
C. iSQL*Plus is a language for communicating with the Oracle server to access data;
SQL recognizes SQL statements and sends them to the server.
D. SQL manipulates data and table definitions in the database; iSQL*Plus does not allow
manipulation of values in the database.

1 of 6 6/3/2011 10:16 PM
Accenture training 80 page dump http://www.scribd.com/doc/47052938/Accenture-training-80-page-dump

2 of 6 6/3/2011 10:16 PM
Accenture training 80 page dump http://www.scribd.com/doc/47052938/Accenture-training-80-page-dump

3 of 6 6/3/2011 10:16 PM
Accenture training 80 page dump http://www.scribd.com/doc/47052938/Accenture-training-80-page-dump

4 of 6 6/3/2011 10:16 PM
Accenture training 80 page dump http://www.scribd.com/doc/47052938/Accenture-training-80-page-dump

5 of 6 6/3/2011 10:16 PM
Accenture training 80 page dump http://www.scribd.com/doc/47052938/Accenture-training-80-page-dump

6 of 6 6/3/2011 10:16 PM

You might also like