select from where什么意思?

如题所述

select*from where是一个sql语句的组成部分,sql是一种数据库查询和程序设计语言,是一种特殊目的的编程语言,用于存取数据以及查询、更新和管理关系数据库系统。

select from的意思就是从(数据库表)查询,where是接查询条件的关键字。

结构化查询语言(Structured Query Language)简称SQL,结构化查询语言是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统;

扩展资料:

sql语句常见语句:

1、更新:update table1 set field1=value1 where 范围

2、查找:select * from table1 where field1 like ’%value1%’ (所有包含‘value1’这个模式的字符串)

3、排序:select * from table1 order by field1,field2 [desc]

4、求和:select sum(field1) as sumvalue from table1

5、平均:select avg(field1) as avgvalue from table1

6、最大:select max(field1) as maxvalue from table1

7、最小:select min(field1) as minvalue from table1[separator]

参考资料来源:百度百科-sql语句

温馨提示:答案为网友推荐,仅供参考