代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/365918/2894325
sql dkzcparm.sql
insert into dk_dkzc_parm(id,name,sm,qybz,csbz,wfsm) values(1, 'hkbz', '贷款人是否为本地户口或有暂住证', '1', '1', '申请人户口不是本地户口且没有暂住证');
insert into dk_dkzc_parm(id,name,val,sm,qybz,csbz,wfsm) values
www.eeworm.com/read/365918/2894326
sql buildtable.sql
--1 贷款政策参数表:
create table dk_dkzc_parm(
id number(5), --政策标示
name varchar2(10), --参数名
val number(14,7), --参数值
sm varchar2(50), --政策含义说明
qybz varc
www.eeworm.com/read/365918/2894327
sql droptable.sql
drop table DK_DKZC_PARM;
drop table DK_LL_PARM;
drop table DK_ROLE_DATA;
drop table DK_SYS_USER;
drop table DK_SYS_CODE;
drop table DK_SYS_CODE_TYPE ;
drop table DK_SYS_PARM;
drop ta
www.eeworm.com/read/365303/2897577
sql upgradeprofilertable.sql
/* This script assumes the following is true before it is run:
* 1. The msdb..LUMIGENT_PROFILER table exists.
* 2. The %LUM_NEW_PROFDB% database exists.
*/
/* Create the new profiler table */
www.eeworm.com/read/364869/2900570
sql createtables.sql
/****** Kimball Group, (c) 2006 ******/
/****** Object: Table [dbo].[DMDemoCustTrain] Script Date: 07/17/2006 14:27:04 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
USE AdventureW
www.eeworm.com/read/364778/2901576
sql webusers.sql
CREATE TABLE webusers
(
UserName VARCHAR(30),
UserPass VARCHAR(30),
UserPhone VARCHAR(30)
)
www.eeworm.com/read/364725/2901619
sql 通讯表.sql
create database addressBook
on primary
(
name='addressBook.mdf',
filename='D:\在线通讯录\Database\addressBook.mdf'
)
use addressBook
create table USERS
(
userID int identity(1,1) primary ke
www.eeworm.com/read/364518/2903332
sql createwebedutables.sql
/*==============================================================*/
/* Database name: Physical */
/* DBMS name: Microsoft SQL Server 2000
www.eeworm.com/read/364518/2903333
sql createinitialdata.sql
insert into t_school ( SchoolId, SchoolName )
values( 'CNTR', 'Center School')
go
insert into t_user( UserId, SchoolId, UserName, LoginName, LoginPassword, NeedChangePassword, State, Gender, Us