标签:
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‘;
标签:
原文地址:http://www.cnblogs.com/chen-yonghai/p/4795428.html