代码搜索:Sql
找到约 10,000 项符合「Sql」的源代码
代码结果 10,000
www.eeworm.com/read/260431/4332080
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/260431/4332081
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/260431/4332082
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 decimal(10,2));
exit;
www.eeworm.com/read/260431/4332083
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/260431/4332096
sql procs.sql
drop method alias COUNTCOFFEE;
drop method alias INSERTCOFFEE;
create method alias COUNTCOFFEE for Procs.countCoffee;
create method alias INSERTCOFFEE for Procs.insertCoffee;
exit;
www.eeworm.com/read/260431/4332097
sql coffee.sql
drop table coffee;
create table coffee (name varchar(32), qty integer);
exit;
www.eeworm.com/read/260431/4332098
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/260431/4332189
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,
de
www.eeworm.com/read/259903/4336726
sql book.sql
-- The following SQL generates the database
-- used by the 'book' example programs
-- Copyright (C) 1992-2001 Trolltech AS. All rights reserved.
--
-- This file is part of an example program for Qt.
www.eeworm.com/read/258867/4351423
sql soobic.sql
# phpMyAdmin SQL Dump
# version 2.5.3
# http://www.phpmyadmin.net
#
# 主机: localhost
# 生成日期: 2005 年 04 月 27 日 18:36
# 服务器版本: 4.0.20
# PHP 版本: 4.3.8
#
# 数据库 : `soobic`
#
# ---------------