码迷,mamicode.com
首页 > 数据库 > 详细

mysql基本功能 增,删,改,查

时间:2018-11-20 10:26:46      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:into   arc   0 rows   功能   date   rom   sele   primary   prim   

增 ==》 insert into 库.表(字段名列表) values(值列表);
mysql> create table meinvdb.mm(
-> id int(4) not null primary key,
-> name varchar(18) not null
-> );
Query OK, 0 rows affected (0.23 sec)

mysql> insert into meinvdb.mm (id ,name)values (1,"liuyan"),(2,"yangmi");
Query OK, 2 rows affected (0.09 sec)
Records: 2 Duplicates: 0 Warnings: 0
改==》 update 表名 set 条件 where 字段名="值" ;
mysql> update meinvdb.mm set id=1 where name="bingbing";
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0 Changed: 0 Warnings: 0
查==》select 字段列表 from 表名 where 条件表达式列表;
mysql> select name from meinvdb.mm where id=2;
+--------+
| name |
+--------+
| yangmi |
+--------+
1 row in set (0.00 sec)
删==》delete from 表名 where 条件;
mysql> delete from meinvdb.mm where id=1;
Query OK, 1 row affected (0.08 sec)
mysql> select * from meinvdb.mm;
+----+--------+
| id | name |
+----+--------+
| 2 | yangmi |
+----+--------+

mysql基本功能 增,删,改,查

标签:into   arc   0 rows   功能   date   rom   sele   primary   prim   

原文地址:http://blog.51cto.com/14066708/2319050

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!