代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/221824/4825217
sql delete.sql
// Delete the tutorial database tables
ALTER TABLE EJB_ORDER_PART DROP CONSTRAINT FK_1;
ALTER TABLE EJB_ORDER_VENDOR_PART DROP CONSTRAINT FK_2;
ALTER TABLE EJB_ORDER_VENDOR_PART DROP CONSTRAINT FK_3;
www.eeworm.com/read/221824/4825218
sql tutorial.sql
// Create tables for all Java EE Tutorial examples
// Create tables for Web bookstore applications
CREATE TABLE WEB_BOOKSTORE_BOOKS
(bookId VARCHAR(8),
surname VARCHAR(24),
firstName VARCHAR(24),
ti
www.eeworm.com/read/221199/4834724
sql database.sql
/*
建立一个SQL数据库
执行完后设置好web.config,然后在网站中注册一个新用户,在进入数据库把Users表里该用户的IsAdmin字段设为True,即成为管理员
后台地址为:http://您的网址/Admin/
用户李宏 密码 fdsjkl 进入后台管理设置管理员,然后可删除该用户
*/
Create DataBase Class
Go
use Class
G
www.eeworm.com/read/221168/4834933
sql schema.sql
-- File containing schema for demo database
create table category (
catid char(20) not null,
locale varchar(10) not null,
name varchar(80) null,
description varchar(255) null,
ima
www.eeworm.com/read/221168/4834960
sql schema.sql
-- File containing schema for demo database
create table category (
catid char(20) not null,
locale varchar(10) not null,
name varchar(80) null,
description varchar(255) null,
ima
www.eeworm.com/read/220469/4840763
sql marks.sql
/* **********************************
本程序的数据库中的marks表的内容过多,且无实际意义,故实际上是通过 SQL程序自动生成的(成绩为随机数)。
*/
-----------------------------------------------------------
-------本文件内为自动填充marks表的代码--------
----
www.eeworm.com/read/219069/4853660
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/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
www.eeworm.com/read/218655/4855717
sql test.sql
/*
* 下面的SQL脚本仅仅适用于Oracle
*/
/* 学生基本信息 */
drop table test_studentinfo;
/* 考试结果信息 */
drop table test_result;
/* 教师和管理员帐号 */
drop ta