MySQL数据库中多表操作和批处理方法(3)_MySQL数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

MySQL数据库中多表操作和批处理方法(3)

作者:黑客防线网安MYSQL维护基地 来源:黑客防线网安MYSQL维护基地 浏览次数:0

本篇关键词:方法处理操作数据库
黑客防线网安网讯: 3、增加记录  前面已经讲过如何增加一条记录,为便于查看,重复与此:   mysql> insert into mytable -> values (′abc′,′f′,′1966-08-17′,′china′,′n′); Query OK, 1 row af...

 3、增加记录

  前面已经讲过如何增加一条记录为便于查看重复与此:

  

mysql> insert into mytable
-> values (′abc′,′f′,′1966-08-17′,′china′,′n′);
Query OK, 1 row affected (0.05 sec)
 


  查看一下:

mysql> select * from mytable;
+----------+------+------------+-----------+--------+
|    name  |  sex |    birth   | birthaddr | single |
+----------+------+------------+-----------+--------+
|   abccs  |   f  | 1977-07-07 |   china   |    y   |
|    mary  |   f  | 1978-12-12 |    usa    |   NULL |
|     tom  |   m  | 1970-09-02 |    usa    |   NULL |
|     abc  |   f  | 1966-08-17 |   china   |    n   |
+----------+------+------------+-----------+--------+
 


  4、删除记录

  用如下命令删除表中的一条记录:


  mysql> delete from mytable where name=′abc′;


  DELETE从表中删除满足由where给出的条件的一条记录

  再显示一下结果:

mysql> select * from mytable;
+----------+------+------------+-----------+--------+
|    name  |  sex |    birth   | birthaddr | single |
+----------+------+------------+-----------+--------+
|   abccs  |   f  | 1977-07-07 |   china   |    y   |
|    mary  |   f  | 1978-12-12 |    usa    |   NULL |
|    tom   |   m  | 1970-09-02 |    usa    |   NULL |
+----------+------+------------+-----------+--------+
 


  5、删除表:

  mysql> drop table ****(表1的名字),***表2的名字;

  可以删除一个或多个表,小心使用

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-8658-1.html
网站维护教程更新时间:2012-03-20 04:59:04  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer