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

MySQL 基础

时间:2015-09-09 19:04:20      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

1 用mysql创建一张表,字段有id(主键自增)、ip地址、时间。

CREATE TABLE mytable (

  id                 int                  not null    auto_increment,
        ipaddress  varchar(45)   not null,
        time            datetime        not null,
        primary key  (id)
) ;



2 向表中插入一条记录,ip为127.0.0.1、时间为当前系统时间。

insert into mytable values(1,  127.0.0.1,  now() );



3 删除表中所有ip为127.0.0.1的记录。

delete from mytable where ipaddress=‘127.0.0.1‘;

 

MySQL 基础

标签:

原文地址:http://www.cnblogs.com/chen-yonghai/p/4795428.html

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