代码搜索:sql

找到约 10,000 项符合「sql」的源代码

代码结果 10,000
www.eeworm.com/read/321621/3531665

sql table.sql

--drop table user_product; --drop table dept_product; --drop table dept_supplier_product; --drop table supplier_product; --drop table stockpile_product; --drop table storehouse_product; --drop table c
www.eeworm.com/read/321104/3539945

sql mysql.sql

# -------------------------------------------------------- # # table structure for table `album_config` # drop table if exists `album_config`; create table `album_config` ( `id` int(8) not
www.eeworm.com/read/320988/3540725

sql db.sql

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[H_BLOG]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[H_BLOG] GO if exists (select * from dbo.sysobjects where
www.eeworm.com/read/320883/3541080

sql test.sql

/* * 下面的SQL脚本仅仅适用于Oracle */ /* 学生基本信息 */ drop table test_studentinfo; /* 考试结果信息 */ drop table test_result; /* 教师和管理员帐号  */ drop ta
www.eeworm.com/read/320883/3541089

sql tables.sql

/* SQLyog v3.62 Host - localhost : Database - hoodb ************************************************************** Server version 4.0.16-nt */ create database if not exists `hoodb`; use `h
www.eeworm.com/read/320541/3547003

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/320537/3547009

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/320218/3549367

tld sql.tld

www.eeworm.com/read/319795/3551796

sql task.sql

# MySQL-Front 3.2 (Build 10.27) /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_
www.eeworm.com/read/319795/3551899

sql 8.2.2.sql

create table items ( id int not null auto_increment, title varchar(50) not null, primary key (id) );