代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/169653/9847860
sql manage.sql
CREATE TABLE Student
(
student VARCHAR2(50),
pass VARCHAR2(50)
);
CREATE TABLE Test
(
student VARCHAR2(50),
test VARCHAR2(50),
score NUMBER,
info VARCHAR2(255)
);
CREATE TA
www.eeworm.com/read/169653/9847864
sql rumulus.sql
CREATE TABLE SCOTT.Test
(
s_ident NUMBER NOT NULL,
ident VARCHAR2(32) UNIQUE NOT NULL,
timing NUMBER DEFAULT 0 NOT NULL,
title VARCHAR2(255),
CONSTRAINT PK_Test PRIMARY KEY (s_ident )
);
www.eeworm.com/read/169613/9849245
sql dropvid.sql
--This script is a destructive script.
--It drops all tables in the Video application.
drop table reservation;
drop table rental;
drop table title_copy;
drop table member;
drop table title
www.eeworm.com/read/169613/9849270
sql privs.sql
SET ECHO OFF
GRANT ALL ON departments
TO SYSTEM
/
GRANT UPDATE (salary, job_id)
ON employees
TO SYSTEM
/
SET ECHO ON
www.eeworm.com/read/169613/9849272
sql buildvid.sql
SET ECHO OFF
/*
Script to build the Video Application
for the Oracle Introduction to Oracle
upated: 25th June 99
Last updated 4th November 1999 (pnathan.in)
*/
PROMPT Please wait whi
www.eeworm.com/read/169613/9849282
sql buildtab.sql
SET ECHO OFF
/*
Script to build the Video Application
for the Oracle Intro to Oracle: SQL and
SQL*Plus section of the course
Created by: Debby Kramer
Creation date: 12/10/95
Last
www.eeworm.com/read/365684/9851591
sql setup.sql
### Create the database
CREATE DATABASE taskdb;
USE taskdb;
### Create the 'taskman' user into the database
### This is required to access and modify the database from code
GRANT SELECT, INSE
www.eeworm.com/read/365556/9855638
ico sql.ico
www.eeworm.com/read/365532/9858057
sql hotel.sql
www.eeworm.com/read/365496/9860893
c sql.c
/*
* $Id: sql.c 574 2007-06-26 23:05:27Z dfishburn $
*
* Copyright (c) 2002-2003, Darren Hiebert
*
* This source code is released for free distribution under the terms of the
* GNU General Publi