Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

1-2: Relational Database Technology Practice Activities

Vocabulary
1.row
2.primary key
3.table
4.foreign key
5.relational database
6.field
7.data manipulation language(DML)
8.data definition language(DDL)
9.transaction control(TCL)
10.data control language(DCL)
Try It. Solve it.
1.
2.
3.ID, FIRST_NAME, LAST_NAME, ADDRESS, CITY, STATE, ZIP, PHONE_NUMBER
4.2 rows
5.
6.
7.

1-3: Anatomy of a SQL Statement


Vocabulary
1.join
2.arithmetic operator
3.column
4.projection
5.null
6.column alias
7.arithmetic expression
8.selection
9.select
10.select clause
11.from clause
12.sql command
13.clause
14.sql statement

Try it. Solve it!


1. select LAST_NAME as "Prenume" from EMPLOYEES
2. select LAST_NAME as "Client", EMAIL as "Email Adress" from D_CLIENTS
3. SELECT last_name, salary *1.05 +.50 FROM f_staffs;
4. c
5. b
6. keywords: SELECT, FROM. Statement: SELECT employee_id, last_name From employees.
Select Clause: SELECT employee_id, last_name, From Clause : FROM employees
7. a-selection
b-join
c-projection
8.c
9.c
10.b

You might also like