代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/442277/1764356

sql initial.sql

CREATE TABLE "user_account" ( id serial not null, login character varying(50) not null, password character varying(50) not null, email character varying(250) not null, PRIMARY KEY (id) ); CREATE
www.eeworm.com/read/442277/1764357

sql drop.sql

DROP TABLE "entry_read_by_user"; DROP TABLE "user_feed"; DROP TABLE "entry"; DROP TABLE "feed"; DROP TABLE "user_account";
www.eeworm.com/read/442179/1764844

sql default.sql

# # Database for the basic example # DROP TABLE servlet_courses; CREATE TABLE servlet_courses ( course VARCHAR(250) NOT NULL, teacher VARCHAR(250), PRIMARY KEY(course) ); INSERT INTO servlet_c
www.eeworm.com/read/441773/1768438

sql shopping.sql

#数据库命名全部小写 create database shopping; use shopping; create table user ( id int primary key auto_increment, username varchar(40), password varchar(16), phone varchar(40), addr varchar(255)
www.eeworm.com/read/441733/1768584

sql insertvalues.sql

use xindou; insert into category(cname,parentid,description,ctype) values ('包包',0,'包包',1); insert into category(cname,parentid,description,ctype) values ('电脑产品',0,'电脑产品',1); insert into category(cn
www.eeworm.com/read/441733/1768587

sql insertvalues.sql

use xindou; insert into category(cname,parentid,description,ctype) values ('包包',0,'包包',1); insert into category(cname,parentid,description,ctype) values ('电脑产品',0,'电脑产品',1); insert into category(cn
www.eeworm.com/read/441733/1768597

sql insertvalues.sql

use xindou; insert into category(cname,parentid,description,ctype) values ('包包',0,'包包',1); insert into category(cname,parentid,description,ctype) values ('电脑产品',0,'电脑产品',1); insert into category(cn
www.eeworm.com/read/441205/1772133

jsp sql.jsp

进入rutikuview
www.eeworm.com/read/441205/1772179

jsp sql.jsp

进入rutikuview
www.eeworm.com/read/439634/1805434

sql createdb.sql

--建立库脚本:该脚本比较笨,请参考存储过程版本 --createdb.sql --删除数据库 drop database if exists netctoss; --创建数据库 create database if not exists netctoss default character set gb2312; --切换数据库 use netctoss; --