摘要:
create table student( sid varchar(50), sname varchar(50), sage varchar(50), ssex varchar(50) ); insert into student( sid,sname,sage,ssex ) values('1', 阅读全文
摘要:
create table score ( xh int(50), km varchar(50), cj int(50) ); select * from score; insert into score values(1,'shuxue',80); insert into score values( 阅读全文
摘要:
使用聚合函数查询 group by关键字通常和聚合函数一起使用 1、count()函数 count()函数用来统计记录的条数 举例:使用count()函数统计employee表的记录数 select count(*) from employee; 举例:使用count()函数统计employee表中 阅读全文
摘要:
一、基本查询语句 select的基本语法格式如下: select 属性列表 from 表名和视图列表 [ where 条件表达式1 ] [ group by 属性名1 [ having 条件表达式2 ] ] [ order by 属性名2 [ asc | desc ] ] 属性列表参数表示需要查询的 阅读全文
摘要:
一、基本查询语句 select的基本语法格式如下: select 属性列表 from 表名和视图列表 [ where 条件表达式1 ] [ group by 属性名1 [ having 条件表达式2 ] ] [ order by 属性名2 [ asc | desc ] ] 属性列表参数表示需要查询的 阅读全文
摘要:
一、基本查询语句 select的基本语法格式如下: select 属性列表 from 表名和视图列表 [ where 条件表达式1 ] [ group by 属性名1 [ having 条件表达式2 ] ] [ order by 属性名2 [ asc | desc ] ] 属性列表参数表示需要查询的 阅读全文
摘要:
插入数据 一、前提,新建表: create table student( sid varchar(50), sname varchar(50), sage varchar(50), ssex varchar(50) ); select * from student; 二、多种方式插入数据: inse 阅读全文
摘要:
一、插入数据 1、为表的所有字段插入数据 (1)insert语句中不指定具体的字段名 语法格式:insert into 表名 values(值1,值2,……,值n); 表名指定记录插入到哪一个表中; 值等表示要插入的数据;值1到值n分别对应着表中的每一个字的;表中定义了几个字段,insert语句中就 阅读全文
摘要:
一、创建表和插入数据: create table cr01 ( sx int(50), mz varchar(50), bz varchar(50) ); insert into cr01 ( sx,mz,bz ) values (1,'sww','sww01'); insert into cr01 阅读全文