SQL基本认识
SQL是用来管理数据的语言
SQL可以有效的处理数据并取得合适的分析结果
SQL的基础应用-查询
select&from
基本语法为: select 字段名
,from 表名
例如
select name,age from table_name
where
where是筛选作用
SQL是用来管理数据的语言
SQL可以有效的处理数据并取得合适的分析结果
select&from
基本语法为: select 字段名
,from 表名
例如
select name,age from table_name
where
where是筛选作用