create table `proxy` (
`ip` varchar(255) not null default '',
`port` varchar(255) not null default '',
primary key (`ip`,`port`)
) engine=innodb auto_increment=100000 default charset=utf8;
create table mydomaintable as
select rownum as id,
to_char(sysdate + rownum/24/3600, 'yyyy-mm-dd hh24:mi:ss') as inc_datetime,
trunc(dbms_random.value(0, 100)) as random_id,
dbms_random.string('x', 20) random_string
from dual
connect by level <= 100000;
create table user(
domid int(10) primary key not null auto_increment,
domain varchar(50) not null,
endLettre varchar(50) not null,
status int(10) not null);
继续阅读与本文标签相同的文章
上一篇 :
【vps搬家】--总结--费元星
-
使用Cache-Control: no-store头,禁止IE浏览器保存临时文件,保护机密信息
2026-05-26栏目: 教程
-
取消ORACLE11g用户密码过期期限
2026-05-26栏目: 教程
-
gnome3中为eclipse创建开始菜单
2026-05-26栏目: 教程
-
eclipse安装pydev
2026-05-26栏目: 教程
-
Java常见几种动态代理的对比
2026-05-26栏目: 教程
