• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back
What is SQL*Plus?
an ad-hoc query tool that is used to interface with an Oracle database system to enter SQL statements and then view the results of the execution of the statements
Windows version of SQL*Plus is typically started by
clicking
"Start,"
"All Programs,"
"Oracle,"
"Application Development" and
"SQL*Plus."
clicking "Start," "All Programs," "Oracle," "Application Development" and "SQL*Plus."
CREATE TABLE CUSTOMERS (
(customer_id INTEGER CONSTRAINT customer_pk PRIMARY KEY,
first_name VARCHAR2 (10) NOT NULL,
ast_name VARCHAR2 (10) NOT NULL,
dob DATE, phone VARCHAR2 (12) );
DESCRIBE command will display the customers' table
DESCRIBE customers;
Add customer information into the Oracle database
INSERT INTO customers (
customer_id,
first_name,
last_name,
dob,
phone ) VALUES ( 6, 'Joe', 'Black', '03-MAR-1970', '888-555-1111');
DELETE customer information from the Oracle database
DELETE FROM customers WHERE customer_id = 6;
Drop the customer table from the Oracle database
DROP TABLE customers;