标签:ted unicode form name 从表 row element single sof
Capabilities of the SELECT Statement(SELECT语句的功能)
Data retrieval from data base is done through appropriate and efficient use of SQL. Three concepts from relational theory encompass the capability of the SELECT statement: projection, selection, and joining.
Consider the above table structures. Fetching first_name name, department_id and salary for a single employee from EMPLOYEES table is Projection. Fetching employee details whose salary is less than 5000, from EMPLOYEES table is Selection. Fetching employee‘s first name, department name by joining EMPLOYEES and DEPARTMENTS is Joining.
Question: Identify the capabilities of SELECT statement.
Answer: A, B. The SELECT statement can be used for selection, projection and joining.
Capabilities of the SELECT Statement(SELECT语句的功能):Projection(投影)、Selection(选择)、Joining(连接)
标签:ted unicode form name 从表 row element single sof
原文地址:http://www.cnblogs.com/scentpath/p/SELECTStatement.html