Oracle 检索数据(查询数据、select语句)
/*--> */ /*--> */ 用户对表或视图最常进行的操作就是检索数据,检索数据可以通过 select 语句来实现,该语句由多个子句组成,通过这些子句完成筛选、投影和连接等各种数据操作,最终得到想要的结果。 语法: select { [ distinct | all ] columns | * } [ into table_name ] from { tables | views | other select } [ where conditions] [ group by columns ] [ having conditions ] [ order by columns ] select子句 :用于选择数据表、视图中的列 into 子句:用于将原表的结构和数据插入新表中 from 子句:用于指定数据来源,包括表,视图和其他select 语句。 where 子句:用于检索的数据进行筛选 group by 子句:用于检索结果进行分组显示 having 子句:用于从使用group by子句分组后的查询结果中筛选数据行 order by 子句:用来对结果集进行排序(包括升序和降序) 一、简单查询 只包含select 子句和 from 子句的查询就是简单查询,同时也是select语句的必选项。 select