代码搜索:CreateTable
找到约 333 项符合「CreateTable」的源代码
代码结果 333
www.eeworm.com/read/463390/1538209
sql createtable.sql
CREATE TABLE country (
id number(3),
name varchar2(20) constraint country_name_nn not null,
constraint country_id_pk primary key(id)
);
INSERT INTO country VALUES (1,'中国');
INSERT INT
www.eeworm.com/read/456062/1608286
sql createtable.sql
create table test.customers
(
cusId varchar2(20),
cusName varchar2(20),
cusSex varchar2(2),
cusAge numeric(3),
cusIdCard varchar2(20)
)
select * from customers
www.eeworm.com/read/456062/1608295
sql createtable.sql
create table test.customers
(
cusId varchar2(20),
cusName varchar2(20),
cusSex varchar2(2),
cusAge numeric(3),
cusIdCard varchar2(20)
)
select * from customers
www.eeworm.com/read/243190/4530390
sqlpage createtable.sqlpage
DROP TABLE CART_USER_YE;
drop TABLE CART_PRODUCT_YE
DROP TABLE CART_ORDER_YE;
DROP TABLE CART_ITEM_YE;
CREATE TABLE CART_USER_YE(
ID INTEGER PRIMARY KEY,
NAME VARCHAR(32) NOT NULL,
PASSWORD
www.eeworm.com/read/219069/4853677
sql createtable.sql
drop table Account_Holder_Transaction;
drop table Account_Hodler;
drop table Registration;
create table Registration
(
cRegistration_id int not null primary key,
cFirst_name char(50) not nul