Operations on tables
When you select data from a table, you are choosing
certain rows and ignoring others. For example, you can query the stock table
by asking the database management system to, Select all rows in
which the manufacturer code is HSK and the unit price is between 200.00
and 300.00.
When you project from a table, you are choosing certain
columns and ignoring others. For example, you can query the stock table
by asking the database management system to project the stock_num, unit_descr,
and unit_price columns.
A table contains information about only one entity; when you want information about multiple entities, you must join their tables. You can join tables in many ways. For more information about join operations, refer to Compose advanced SELECT statements.