代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/461957/1548956
sql team.sql
/*
//参赛队(组别,球队)
CREATE TABLE Team
( group1 char(10),
team1 nchar(20) NOT NULL UNIQUE,
PRIMARY KEY (team1),
CHECK(group1 BETWEEN 'A' AND 'H'))
INSERT INTO Team
VAL
www.eeworm.com/read/461957/1548957
sql matchrecord.sql
/*
//小组赛记录表(组别,球队1,球队2,场次,比赛时间,队1进球数,队2进球数)
//创建赛程安排及战况记录表
CREATE TABLE MatchRecord
(
group1 nchar(10),
team1 nchar(20) NOT NULL,
team2 nchar(20) NOT NULL,
www.eeworm.com/read/460562/1560198
sql employeeinformationmsok.sql
CREATE DATABASE EmployeeInformationMS
--DROP DATABASE EmployeeInformationMS
go
USE EmployeeInformationMS
go
/*用户信息表*/
CREATE TABLE UserInformation
(
User_ID INT IDENTITY(1,1),
Us
www.eeworm.com/read/460526/1560859
h sql.h
#ifndef _SQL_H
#define _SQL_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef ODBCVER
#define ODBCVER 0x0250
#endif
#include "sqltypes.h"
/* FIXME! */
#define SQL_SPEC_MAJOR (ODBCVER/0x100)
#define SQL
www.eeworm.com/read/459988/1563742
sql syspoll.sql
-- MySQL Administrator dump 1.4
--
-- ------------------------------------------------------
-- Server version 4.1.12a-nt
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*
www.eeworm.com/read/459859/1565044
sql ajax.sql
-- MySQL dump 10.10
--
-- Host: localhost Database: ajax
-- ------------------------------------------------------
-- Server version 5.0.27-community-nt
/*!40101 SET @OLD_CHARACTER_SET_CLIEN
www.eeworm.com/read/459753/1565357
sql createendusertables.sql
DROP TABLE RB_FOLDER;
DROP SEQUENCE FOLDER_ID_SEQ;
DROP TABLE RB_ITEM;
DROP SEQUENCE ITEM_ID_SEQ;
DROP TABLE RB_TABLE;
DROP TABLE RB_FIELD;
DROP TABLE RB_JOIN;
CREATE TABLE RB_FOLDER (
F