代码搜索:Sql
找到约 10,000 项符合「Sql」的源代码
代码结果 10,000
www.eeworm.com/read/262708/4309944
sql employeeinformationmsok.sql
CREATE DATABASE EmployeeInformationMS
--DROP DATABASE EmployeeInformationMS
go
USE EmployeeInformationMS
go
/*用户信息表*/
CREATE TABLE UserInformation
(
User_ID INT IDENTITY(1,1),
Us
www.eeworm.com/read/262636/4310357
sql webstore.sql
SET SCAN ON
PROMPT Enter the password and TNS name.
PROMPT Enter the oracle SID for TNS name if you are running a local database.
CONNECT system/&systempassword@&&tnsname
-- Drop the user and all o
www.eeworm.com/read/262636/4310516
sql ejbbank.sql
echo --- load the EJBBANK database ---
echo --- connect to EJBBANK database ---
CONNECT TO EJBBANK
DELETE FROM ITSO.TRANSRECORD
DELETE FROM ITSO.SAVINGS
DELETE FROM ITSO.CHECKING
DELETE FROM
www.eeworm.com/read/262636/4310522
sql ejbbank.sql
echo --- load the EJBBANK database ---
echo --- connect to EJBBANK database ---
CONNECT TO EJBBANK
DELETE FROM ITSO.TRANSRECORD
DELETE FROM ITSO.SAVINGS
DELETE FROM ITSO.CHECKING
DELETE FROM
www.eeworm.com/read/262563/4311832
sql module.sql
# sql file for reading list module
CREATE TABLE `assignments` (
`assignment_id` MEDIUMINT(6) UNSIGNED NOT NULL AUTO_INCREMENT DEFAULT 0,
`course_id` MEDIUMINT UNSIGNED NOT NULL ,
`title` VARC
www.eeworm.com/read/260431/4332075
sql teller.sql
drop table checking;
create table checking
(id varchar(3) constraint pk_checking primary key,
balance decimal(10,2));
insert into checking
values ('123', 500.00);
drop table cash_in_machine;
www.eeworm.com/read/260431/4332076
sql salesrep.sql
drop table customer;
drop table salesrep;
create table salesrep
(salesrepid varchar(3) constraint pk_salesrep primary key,
name varchar(24));
insert into salesrep
values ('876', 'Clyde Webster');
in
www.eeworm.com/read/260431/4332077
sql order.sql
drop table lineitems;
drop table orders;
create table orders
(orderid varchar(3) constraint pk_order primary key,
customerid varchar(3),
totalprice decimal(10,2),
status varchar(10));
insert into
www.eeworm.com/read/260431/4332078
sql shipper.sql
drop table stock;
create table stock
(product_id varchar(3) constraint pk_stock primary key,
quantity_on_hand integer,
reorder_level integer);
insert into stock
values ('123', 100, 90);
exit;
www.eeworm.com/read/260431/4332079
sql bank.sql
drop table checking;
create table checking
(id varchar(3) constraint pk_checking primary key,
balance decimal(10,2));
insert into checking
values ('123', 100.00);
drop table saving;
create t