代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/398504/7942981
sql news.sql
# MySQL-Front 3.2 (Build 6.2)
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CO
www.eeworm.com/read/198280/7943204
sql student.sql
www.eeworm.com/read/298687/7945166
sql vote.sql
www.eeworm.com/read/197957/7961067
sql ticket.sql
www.eeworm.com/read/197947/7961538
sql trade.sql
www.eeworm.com/read/297978/7982889
chm sql.chm
www.eeworm.com/read/398419/7989317
sql database.sql
create database stuchoose
use stuchoose
create table student --学生信息表
( Sno char(12) primary key, --学号
Sname char(10) not null, --姓名
Ssex char(2),
www.eeworm.com/read/398322/7994673
sql digui.sql
---------------------------------三思的递归------------------------------
------------------------------------------------------------------------
ALTER procedure prcRepertories_id @KC_ID int,@KC_ZL dec
www.eeworm.com/read/197411/7997137
sql tdjob.sql
# phpMyAdmin SQL Dump
# version 2.5.3-rc1
# http://www.phpmyadmin.net
#
# 主机: localhost:3306
# 生成日期: 2004 年 01 月 02 日 12:23
# 服务器版本: 4.0.14
# PHP 版本: 4.3.3
#
# 数据库 : `tdjob`
#
# -------
www.eeworm.com/read/297716/8001343
sql ddl.sql
CREATE TABLE Dealing (
DealingID int identity(1,1) Primary key ,
DealingDate datetime NOT NULL ,
DealingPrice money NOT NULL ,
UserName varchar(25) NULL ,
MemberCard varchar(20) NULL
)