代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/145188/5747214
sql spcursors.sql
create or replace package
curs_types as
type EmpCurType is REF CURSOR RETURN emp%ROWTYPE;
end curs_types;
/
create or replace procedure
single_cursor(curs1 IN OUT curs_types.EmpCurType, cty
www.eeworm.com/read/144314/5750481
sql prepaid.sql
# MySQL dump 8.13
#
# Host: localhost Database: python
#--------------------------------------------------------
# Server version 3.23.36
#
# Table structure for table 'sessions'
#
CREATE TABLE s
www.eeworm.com/read/144314/5750896
c sql.c
/*
* sql.c rlm_sql - FreeRADIUS SQL Module
* Main code directly taken from ICRADIUS
*
* Version: $Id: sql.c,v 1.79.2.3 2005/08/26 00:37:47 aland Exp $
*
* This program is free software; you
www.eeworm.com/read/143607/5756339
sql studentgrade.sql
alter table STUDENTS drop constraint FK9E77B5985CB11CBE;
drop table CLASSES;
drop table COURSEES;
drop table STUDENTS;
drop table TEACHERS;
drop table USERS;
create table CLASSES (
ID numeric(19,0
www.eeworm.com/read/143490/5757710
sql nc.sql
# --------------------------------------------------------
#
# 表的结构 `NEAT_category`
#
DROP TABLE IF EXISTS `NEAT_category`;
CREATE TABLE `NEAT_category` (
`id` int(10) unsigned NOT NULL auto_i
www.eeworm.com/read/143026/5759367
txt sql.txt
CREATE DATABASE Hospital
GO
USE Hospital
GO
CREATE TABLE BaseType
(Id int PRIMARY KEY IDENTITY,
TypeId tinyint,
TypeName varchar(30)
)
GO
USE Hospital
GO
CREATE TAB
www.eeworm.com/read/141805/5768236
sql create.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/141805/5768245
sql create.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/141805/5768251
sql create.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/141805/5768257
sql create.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