代码搜索:sql

找到约 10,000 项符合「sql」的源代码

代码结果 10,000
www.eeworm.com/read/313364/13589734

sql createglobaltoyzobjects.sql

USE GlobalToyz go /* creating required data types */ execute sp_addtype id ,'char(6)' ,'NOT NULL' raiserror('Now at the Create Table section ....',0,1) Go raiserror('Creating Table Catego
www.eeworm.com/read/313012/13598437

asp sql.asp

www.eeworm.com/read/312419/13611620

sql crea.sql

use lyfdat; create table wenxue( bt varchar(255) not null, nr mediumtext not null, smxlh smallint not null, date date not null, time time not null ); create table wenxue2( mc varchar(255) not
www.eeworm.com/read/312258/13614319

sql studgldbf.sql

prompt PL/SQL Developer import file prompt Created on 2006年3月11日 by 杨波 set feedback off set define off prompt ***************************************** prompt *****创建学籍变更表CHANGE********* promp
www.eeworm.com/read/312215/13615409

sql bookstore.sql

use bookstore; create table bookinfo(id INT not null primary key,title VARCHAR(50) not null,author VARCHAR(50) not null,bookconcern VARCHAR(100) not null,publish_date DATE not null,price FLOAT(4,2)
www.eeworm.com/read/312206/13616639

sql schooldata.sql

www.eeworm.com/read/312046/13619753

sql blog.sql

# MySQL-Front Dump 2.5 # # Host: localhost Database: blog # -------------------------------------------------------- # Server version 4.1.10-nt # # Table structure for table 'boardinfo' #
www.eeworm.com/read/311758/13626683

sql rsgl.sql

prompt PL/SQL Developer import file prompt Created on 2006年3月20日 by yb set feedback off set define off prompt Dropping COUNTER... drop table COUNTER cascade constraints; prompt Dropping DEPARTME
www.eeworm.com/read/311546/13629515

sql piao.sql

create database hcdp go --********查票代码******** --*********************** --drop table chapiao create table chapiao(票号 int primary key, 车次 varchar (20) null,
www.eeworm.com/read/311129/13635306

sql examples.sql

DROP TABLE IF EXISTS Employee; CREATE TABLE Employee (UserName VARCHAR(50) PRIMARY KEY, Password VARCHAR(50), FirstName VARCHAR(50), LastName VARCHAR(50), Dept VARCHAR(50), Em