博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
创建数据库脚本
阅读量:6843 次
发布时间:2019-06-26

本文共 599 字,大约阅读时间需要 1 分钟。

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);

转载地址:http://jrdul.baihongyu.com/

你可能感兴趣的文章
实现Div层里的文字垂直居中的方法
查看>>
我的友情链接
查看>>
谁说使用Python你就写不出混乱的代码?
查看>>
网桥和交换机的区别
查看>>
使用Raspcontrol在线查看树莓派各项情况
查看>>
超强JIRA流程图
查看>>
java 导出excel表格
查看>>
android好帖子
查看>>
使用EqualsBuilder和HashCodeBuilder重写equals、hashCode方法
查看>>
合理信息安全设备的选择 选型依据分析
查看>>
操作Visual Studio 2010中的SQL Server数据库比较工具
查看>>
partition underscore
查看>>
component develope
查看>>
通向架构师的道路(二)--之apache tomcat https应用
查看>>
理解会话
查看>>
学习Linux决心书
查看>>
华为使用命令
查看>>
二、Python'核心编程(数字)
查看>>
javamail正文乱码
查看>>
poj2226精妙的构图
查看>>