代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/387667/2556941
sql pgstattuple.sql
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE TYPE pgstattuple_type AS (
table_len BIGINT, -- physical table length in bytes
tuple_count BIGINT,
www.eeworm.com/read/387667/2556943
sql _int.sql
--
-- Create the user-defined type for the 1-D integer arrays (_int4)
--
-- Adjust this setting to control where the operators, functions, and
-- opclasses get created.
SET search_path = public;
BEG
www.eeworm.com/read/387667/2556944
sql lo.sql
--
-- PostgreSQL code for managed Large Objects
--
-- $PostgreSQL: pgsql/contrib/lo/lo.sql.in,v 1.13 2005/06/23 00:06:37 tgl Exp $
--
-- Adjust this setting to control where the objects get created.
www.eeworm.com/read/387189/2563636
sql 存储过程.sql
select * from tblBookAttribute
insert into tblBookAttribute values('征订')
insert into Admin values('admin3','')
select * from ##temp
create trigger InsertBookInfo
on tblBookInfo
for Insert
www.eeworm.com/read/386923/2565460
sql basequery.sql
use pubs
select * from authors
select au_id,au_lname,au_fname,phone,address,city,state,zip from authors
CREATE TABLE students(student_id smallint IDENTITY(1,1) PRIMARY KEY CLUSTERED,st
www.eeworm.com/read/386883/2565695
sql logistic.sql
-- MySQL dump 10.11
--
-- Host: localhost Database: logistic
-- ------------------------------------------------------
-- Server version 5.0.37-community-nt
/*!40101 SET @OLD_CHARACTER_SET_C
www.eeworm.com/read/386497/2571125
sql tables.sql
create table sites(
site_id int auto_increment not null primary key,
url varchar(255),
title varchar(255),
short_desc text,
indexdate date,
spider_depth int default 2,
required text,
d
www.eeworm.com/read/386059/2574322
sql mysql.sql
create table CMS_MODULE_ONLINE_MASTER (MASTER_ID VARCHAR(36) BINARY NOT NULL,
SUB_ID INT NOT NULL,
www.eeworm.com/read/386059/2574323
sql generic.sql
create table CMS_MODULE_ONLINE_MASTER
(MASTER_ID VARCHAR2(36) not null,
SUB_ID NUMBER not null,
USER_ID VARCHAR2(36) not null,
GROUP_ID VARCHAR2(36) not null,
PROJECT_ID NUMBER not null,
ACCE