select的基本语法
1 select [all |distinct] select_list
2 [into [new_table_name]]
3 from [table_name|view_name],
4 [table_name2|view_name2]
5 [where search_conditions]
6 [group by group_by_list]
7 [having search_conditions]
8 [order by order_list[asc|desc]] 以前以为挺简单,后来发现挺复杂。
posted on 2006-06-07 16:12
太行 阅读(705)
评论(0) 编辑 收藏 引用 所属分类:
技术热点