在创建完数据库的表格后,接下来要做的显然就是对表格的数据进行编辑了,这篇文章整理了一些关于表格处理的基本方法:
一、添加数据:
在上篇文章中我已经建好了一个t_student的表格,然后往其中添加数据:
-- 在t_student数据库表中插入数据:
insert into t_student values (1,'张三','男',18,'2022-5-8','软件1班','[email protected]');
insert into t_student values (10010010,'张三','男',18,'2022-5-8','软件1班','[email protected]');
insert into t_student values (2,'张三','男',18,'2022.5.8','软件1班','[email protected]');
insert into t_student values (2,"张三",'男',18,'2022.5.8','软件1班','[email protected]');
insert into t_student values (7,"张三",'男',18,now(),'软件1班','[email protected]');
insert into t_student values (9,"易烊千玺",'男',18,now(),'软件1班','[email protected]');
insert into t_student (sno,sname,enterdate) values (10,'李四','2023-7-5');
在添加数据的过程中有如下几个注意点:
二、修改数据:
修改表中的关键词为update
-- 修改表中数据
update t_student set sex = '女' ;
update t_student set sex = '男' where sno = 10 ;
UPDATE T_STUDENT SET AGE = 21 WHERE SNO = 10;
update t_student set CLASSNAME = 'java01' where sno = 10 ;
update t_student set CLASSNAME = 'JAVA01' where sno = 9 ;
update t_student set age = 29 where classname = 'java01';
其中有如下注意点:
1.关键字,表名,字段名不区分大小写
2.默认情况下,内容不区分大小写
三、删除数据
删除数据的关键词为delete
delete from t_student where sno = 2;
如下注意点:
1.删除操作from关键字不可缺少
2.修改,删除数据别忘记加限制条件
四、删除数据表:
删除数据表有两种方式,一种是在table直接右键选择drop table
所以删除表的关键字也是drop
drop table t_student;
五、修改数据表:
1.查看数据:用select
select * from t_student;
2、增加表中一列数据:
alter table t_student add score double(5,2) ; -- 5:总位数 2:小数位数
update t_student set score = 123.5678 where sno = 1 ;
3、增加一列(放在最前面):
alter table t_student add score double(5,2) first;
4、-- 增加一列(放在sex列的后面)
alter table t_student add score double(5,2) after sex;
5、删除一列:
alter table t_student drop score;
6、修改一列:
alter table t_student modify score float(4,1); -- modify修改是列的类型的定义,但是不会改变列的名字
alter table t_student change score score1 double(5,1); -- change修改列名和列的类型的定义