代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/127043/6009460
sql create_mysql.sql
drop table system_data;
create table system_data (
id bigint not null,
version varchar(20) not null,
creationDate DATE not null
);
create uniqu
www.eeworm.com/read/127043/6009461
sql create_jds.sql
/* DROP TABLE system_data; */
create table system_data (
id int not null,
version varchar(20) not null,
creationDate DATE not null
);
create un
www.eeworm.com/read/127043/6009462
sql create_sqlserver.sql
use openjms;
create table system_data (
id bigint not null,
version varchar(20) not null,
creationDate datetime not null
);
create unique ind
www.eeworm.com/read/127043/6009463
sql create_sybaseanywhere.sql
drop table system_data
go
create table system_data (
id bigint not null,
version varchar(20) not null,
creationDate datetime not null
)
go
cr
www.eeworm.com/read/127043/6009464
sql create_sybase.sql
drop table system_data
go
create table system_data (
id int not null,
version varchar(20) not null,
creationDate datetime not null
)
go
creat
www.eeworm.com/read/127043/6009465
sql create_mckoi.sql
DROP TABLE system_data;
DROP TABLE seeds;
DROP TABLE destinations;
DROP TABLE messages;
DROP TABLE message_handles;
DROP TABLE consumers;
DROP TABLE users;
create table system_data (
id
www.eeworm.com/read/127043/6009467
sql create_interbase.sql
DROP TABLE system_data;
create table system_data (
id int not null,
version varchar(20) not null,
creationDate DATE not null
);
create unique i
www.eeworm.com/read/127043/6009469
sql create_postgresql.sql
DROP TABLE system_data;
create table system_data (
id int not null,
version varchar(20) not null,
creationDate DATE not null
);
create unique i
www.eeworm.com/read/127043/6009470
sql create_sapdb.sql
create table system_data (
id int primary key,
version varchar(20) not null,
creationDate timestamp not null
)
//
create table seeds (
nam
www.eeworm.com/read/127043/6009471
sql create_hsql.sql
drop table system_data;
create table system_data (
id int not null,
version varchar(20) not null,
creationDate datetime not null
);
create uniq