代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/485711/1260186
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/485711/1260187
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/485711/1260188
sql savingsaccount.sql
drop table savingsaccount;
create table savingsaccount
(id varchar(3) constraint pk_savings_account primary key,
firstname varchar(24),
lastname varchar(24),
balance numeric(10,2));
exit;
www.eeworm.com/read/485711/1260189
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',
www.eeworm.com/read/485711/1260190
sql books.sql
DROP TABLE books;
CREATE TABLE books
(id VARCHAR(8)
CONSTRAINT pk_books PRIMARY KEY,
surname VARCHAR(24),
first_name VARCHAR(24),
title VARCHAR(96),
price FLOAT,
yr INT,
description VARCHA
www.eeworm.com/read/485711/1260191
sql coffee.sql
drop table coffee;
create table coffee (name varchar(32), qty integer);
exit;
www.eeworm.com/read/485711/1260192
sql oracle.sql
drop table coffee;
drop procedure COUNTCOFFEE;
drop procedure INSERTCOFFEE;
create table coffee (name varchar(32), qty integer);
create or replace procedure COUNTCOFFEE (N OUT INTEGER) is
begin sele
www.eeworm.com/read/485711/1260287
sql delete.sql
DELETE FROM tx;
DELETE FROM customer_account_xref;
DELETE FROM account;
DELETE FROM customer;
www.eeworm.com/read/485711/1260288
sql insert.sql
DELETE FROM tx;
DELETE FROM customer_account_xref;
DELETE FROM account;
DELETE FROM customer;
INSERT INTO account VALUES
('5005', 'Money Market', 'Hi Balance', 4000.00, 0.00, 3500.00, '2000-02-28 23: