代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/282113/4109852
txt sql.txt
select distinct mis_wlbdy.wlbdm,mis_zbjdyxx.wlbmc from mis_wlbdy,mis_zbjdyxx where mis_wlbdy.wlbdm = mis_zbjdyxx.wlbdm and mis_wlbdy.wlbdm like 'A%'
select distinct mis_wlbdy.wlbzddm,wlbzdmc fro
www.eeworm.com/read/281897/4111632
sql 3.3.0.sql
/*
*
* This SQL script is designed to upgrade your NAV database from
* version 3.2 to 3.3. THIS SCRIPT WILL NOT WORK ON POSTGRESQL
* VERSIONS PRIOR TO 8.0.
*
* Run the script as the nav databas
www.eeworm.com/read/281897/4111633
sql 3.1.0.sql
/*
*
* This SQL script is designed to upgrade your NAV database from
* version 3.0 to 3.1
*
* Connect to PostgreSQL as the postgres superuser or the nav database user
* like this:
*
* psql -f
www.eeworm.com/read/281897/4111635
sql 3.2.0.sql
/*
*
* This SQL script is designed to upgrade your NAV database from
* version 3.1 to 3.2
*
* Run the script as the nav database user like this:
*
* psql -f 3.2.0.sql manage nav
*
* Also mak
www.eeworm.com/read/278521/4142963
sql createaccounts.sql
create database AccountsDB
go
use AccountsDB
create table Accounts ([Client] varchar (15) NOT NULL, [Balance] int NOT NULL)
create unique index Client on Accounts([Client])
insert into Accounts V
www.eeworm.com/read/278521/4142964
sql createexchange.sql
create database StocksDB
go
use StocksDB
create table Stocks ([Symbol] varchar (5) NOT NULL,
[Shares] int NOT NULL,
[MarketPrice] int NOT NULL)
create unique index [Symbol] on Stocks([Symbol])
www.eeworm.com/read/277933/4148545
sql 存储过程.sql
select * from tblBookAttribute
insert into tblBookAttribute values('征订')
insert into Admin values('admin3','')
select * from ##temp
create trigger InsertBookInfo
on tblBookInfo
for Insert