Mysql常用命令 插入查询删除修改数据
Posted onebyck
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql常用命令 插入查询删除修改数据相关的知识,希望对你有一定的参考价值。
insert into命令用于向表中插入数据。
insert into命令格式:insert into <表名> [(<字段名1>[,..<字段名n > ])] values ( 值1 )[, ( 值n )];
先show tables;有个MyClass 表。往表 MyClass中插入两条记录,这两条记录表示:编号为1的名为Tom的成绩为96.45,编号为2 的名为Joan 的成绩为82.99,编号为3 的名为Wang 的成绩为96.5。
insert into MyClass values(null,‘Tom‘,1,96.45),(null,‘Joan‘,1,82.99), (null,‘Wang‘,2, 96.59);
select from命令用来查询表中的数据。
命令格式: select <字段1, 字段2, ...> from < 表名 > where < 表达式 >;
例如,查看表 MyClass 中所有数据:
slect * from MyClass;
查询结果如图:
<ignore_js_op>
delete from命令用于删除表中的数据。
delete from命令格式:delete from 表名 where 表达式
例如,删除表 MyClass中编号为1 的记录:
delete from MyClass where id=1;
删除后表里的数据如下:
mysql> Select * from MyClass; +----+------+-----+--------+ | id | name | sex | degree | +----+------+-----+--------+ | 2 | Joan | 1 | 82.99 | | 3 | Wang | 2 | 96.59 | +----+------+-----+--------+ 2 rows in set (0.00 sec)
update set命令用来修改表中的数据。
update set命令格式:update 表名 set 字段=新值,… where 条件;
举例如下:
update MyClass set name=‘ck‘ where id=2;
更新后数据如下:
mysql> select * from MyClass; +----+------+-----+--------+ | id | name | sex | degree | +----+------+-----+--------+ | 2 | ck | 1 | 82.99 | | 3 | Wang | 2 | 96.59 | +----+------+-----+--------+ 2 rows in set (0.00 sec)
http://www.sodu666.com/1/
http://tieba.sodu666.com/
以上是关于Mysql常用命令 插入查询删除修改数据的主要内容,如果未能解决你的问题,请参考以下文章