代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/371889/2778324
sql table.sql
# MySQL-Front Dump 2.5
#
# Host: localhost Database: kjc
# --------------------------------------------------------
# Server version 4.0.5-beta-max-nt
#
# Table structure for table 'kjc2_b
www.eeworm.com/read/371443/2779872
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/371371/2780682
properties sql.properties
#########################################################
# 资源管理
#########################################################
# 取得所有资源
get.all.res = \
select * from SYS_RESOURCE
############
www.eeworm.com/read/371371/2780683
properties sql.properties
#########################################################
# 关于资源模块的TAG
#########################################################
# 模块TAG Templet
get.module.templet = \
select * from SYS_MODULE
www.eeworm.com/read/371371/2780684
properties sql.properties
#########################################################
# 资源模块分类
#########################################################
# 选择所有启用的资源模块分类
get.all.module_type = \
select * from SYS_MODULE_TY
www.eeworm.com/read/371371/2780685
properties sql.properties
#########################################################
# 统计管理
#########################################################
# 保存当前站点访问量
save.site_counter = \
insert into STAT_SITE_COUNTER \
(
www.eeworm.com/read/371271/2780935
sql company.sql
/* 创建数据库 company */
drop database company
create database company
/* 创建数据表 MESSAGE */
DROP TABLE [MESSAGE]
CREATE TABLE [MESSAGE] ( [messageID] [int] IDENTITY (1, 1) NOT
www.eeworm.com/read/371135/2781608
sql authors.sql
CREATE TABLE Authors (Author_Id CHAR(4), Name CHAR(25), Fname CHAR(25))
INSERT INTO Authors VALUES ('ALEX', 'Alexander', 'Christopher')
INSERT INTO Authors VALUES ('BROO', 'Brooks', 'Frederick P.')
www.eeworm.com/read/371135/2781610
sql books.sql
CREATE TABLE Books (Title CHAR(60), ISBN CHAR(13), Publisher_Id CHAR(6), Price DECIMAL(10,2))
INSERT INTO Books VALUES ('A Guide to the SQL Standard', '0-201-96426-0', '0201', '47.95')
INSERT INTO B