代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/322590/3522961
sql rowsizelimit.sql
echo Description: row size limit..checking for 8K size
create table t1 (f1 char (1000), f2 char (1000), f3 char (1000), f4 char (1000), f5 char (1000),
f6 char (1000), f7 char (100
www.eeworm.com/read/322590/3522987
sql ddl.sql
create table t1 (f1 int, f2 int);
insert into t1 values (10, 20);
insert into t1 (f1, f2) values (11, 21);
insert into t1 (f2, f1) values (22, 12);
insert into t1 (f1) values (13);
insert into t1 (f2
www.eeworm.com/read/322590/3523258
sql create.sql
create table t1 (f1 int primary key, f2 int);
insert into t1 values(1,11);
insert into t1 values(2,21);
insert into t1 values(3,31);
insert into t1 values(4,41);
insert into t1 values(5,51);
insert in
www.eeworm.com/read/322590/3523259
sql dropall.sql
drop table t1;
drop table t2;
drop table t3;
drop table t4;
drop table t5;
drop table t6;
drop table t7;
drop table t8;
drop table t9;
drop table t10;
drop table t11;
drop table t12;
drop table t13;
d
www.eeworm.com/read/322051/3528053
txt sql.txt
select distinct mis_wlbdy.wlbdm,mis_zbjdyxx.wlbmc from mis_wlbdy,mis_zbjdyxx where mis_wlbdy.wlbdm = mis_zbjdyxx.wlbdm and mis_wlbdy.wlbdm like 'A%'
select distinct mis_wlbdy.wlbzddm,wlbzdmc fro
www.eeworm.com/read/321897/3529856
sql mysqlscripts.sql
create database employees;
use employees;
create table employees
(
username varchar(15) not null primary key,
password varchar(15) not null,
roleid integer not null,
name varchar(30
www.eeworm.com/read/321675/3531549
sql javaicq.sql
--创建javaicq数据库
CREATE database javaicq
use javaicq
--创建 icq 表,以下创建的表都不设关键字,默认都为空
create table icq
( Icqno int, /*用户的号码 */
Nickname Char (10), /*用户的呢称*/
Password Char(10),
www.eeworm.com/read/321621/3531653
sql table.sql
--drop table user_product;
--drop table dept_product;
--drop table dept_supplier_product;
--drop table supplier_product;
--drop table stockpile_product;
--drop table storehouse_product;
--drop table c