代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/285283/4054564
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/285283/4054565
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/285283/4054566
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/285283/4054567
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/285283/4054568
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
www.eeworm.com/read/285283/4054569
sql enroller.sql
drop table enrollment;
drop table student;
drop table course;
create table student
(studentid varchar(3) constraint pk_student primary key,
name varchar(36));
insert into student
values ('123', '
www.eeworm.com/read/285283/4054570
sql warehouse.sql
drop table inventory;
create table inventory
(product_id varchar(3),
quantity decimal(10));
insert into inventory
values ('123', 100);
drop table order_item;
create table order_item
(order
www.eeworm.com/read/285283/4054571
sql storagebin.sql
drop table storagebin;
drop table widget;
create table widget
(widgetid varchar(3) constraint pk_widget primary key,
description varchar(50),
price decimal (10,2));
insert into widget
values ('876',