代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/285283/4054574
sql myaccount.sql
drop table myaccount;
create table myaccount
(id varchar(3) constraint pk_myaccount primary key,
firstname varchar(24),
lastname varchar(24),
balance decimal(10,2));
exit;
www.eeworm.com/read/285283/4054588
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/285283/4054589
sql coffee.sql
drop table coffee;
create table coffee (name varchar(32), qty integer);
exit;
www.eeworm.com/read/285283/4054590
sql cloudscape.sql
drop table coffee;
drop method alias COUNTCOFFEE;
drop method alias INSERTCOFFEE;
create table coffee (name varchar(32), qty integer);
create method alias COUNTCOFFEE for Procs.countCoffee;
create
www.eeworm.com/read/285283/4054591
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/285283/4054677
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/284712/4059898
java sql.java
/*
* Created on 2004-12-10
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.bwm.string;
/**
www.eeworm.com/read/283475/4078634
sql 附加课.sql
use master
if exists (select *from sysdatabases where name='Worker')
drop database Worker
------建数据库
create database Worker
on primary(
Name='Worker_data',
FileName='E:\Worker.mdf',
size=6
www.eeworm.com/read/282794/4087365
sql studb.sql
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION