代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/101039/6260419
sql a_asset_create.sql
CREATE OR REPLACE PROCEDURE A_Asset_Create
(
p_PInstance_ID IN NUMBER,
p_InOutLine_ID IN NUMBER
)
/*************************************************************************
* The contents
www.eeworm.com/read/100446/6269440
sql backsql_create.sql
drop table if exists ldap_oc_mappings;
create table ldap_oc_mappings
(
id integer unsigned not null primary key auto_increment,
name varchar(64) not null,
keytbl varchar(64) not null,
keycol varc
www.eeworm.com/read/100446/6269442
sql testdb_create.sql
drop table if exists persons;
CREATE TABLE persons (
id int NOT NULL,
name varchar(255) NOT NULL
);
drop table if exists institutes;
CREATE TABLE institutes (
id int NOT NULL,
name varchar(255)
)
www.eeworm.com/read/100446/6269447
sql backsql_create.sql
create table ldap_oc_mappings (
id int identity (1, 1) not null ,
name varchar (64) not null ,
keytbl varchar (64) not null ,
keycol varchar (64) not null ,
create_proc varchar (255) NULL ,
dele
www.eeworm.com/read/100446/6269449
sql testdb_create.sql
CREATE TABLE authors_docs (
pers_id int NOT NULL ,
doc_id int NOT NULL
)
GO
CREATE TABLE documents (
id int IDENTITY (1, 1) NOT NULL ,
abstract varchar (255) NULL ,
title varchar (255) NULL ,
www.eeworm.com/read/100446/6269454
sql backsql_create.sql
create table ldap_oc_mappings (
id number not null ,
name varchar2(64) not null ,
keytbl varchar2(64) not null ,
keycol varchar2(64) not null ,
create_proc varchar2(255),
delete_proc varchar2(25
www.eeworm.com/read/100446/6269456
sql testdb_create.sql
CREATE TABLE persons (
id NUMBER NOT NULL,
name varchar2(255) NOT NULL
);
CREATE TABLE institutes (
id NUMBER NOT NULL,
name varchar2(255)
);
CREATE TABLE documents (
id NUMBER NOT NULL,
title
www.eeworm.com/read/100285/6270716
sgml create_user.sgml
CREATE USER
SQL - Language Statements
CREATE USE
www.eeworm.com/read/100285/6270718
sgml create_table.sgml
CREATE TABLE
SQL - Language Statements
CREATE T
www.eeworm.com/read/100285/6270726
sgml create_view.sgml
CREATE VIEW
SQL - Language Statements
CREATE VIE