代码搜索:Create

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

代码结果 10,000
www.eeworm.com/read/346177/11763592

txt 课堂示范.txt

create proc zcc @zcc varchar(10) as select dbo.定单.运输价格+dbo.定单.包装价格+dbo.定单详情.玩具价格 as 总费用 from dbo.定单 inner j
www.eeworm.com/read/346177/11763601

txt 示例.txt

--触发器只能在当前数据库中创建。 但是,触发器可以引用其他数据库中的对象。(示例) use sampledb go 创建表test备用 create table test ( aa int, bb int ) go 向test表中插入一些数据备用 insert into test values (1001,0) insert into test values (1002,
www.eeworm.com/read/346177/11763612

txt 示例.txt

--触发器只能在当前数据库中创建。 但是,触发器可以引用其他数据库中的对象。(示例) use sampledb go 创建表test备用 create table test ( aa int, bb int ) go 向test表中插入一些数据备用 insert into test values (1001,0) insert into test
www.eeworm.com/read/346120/11767385

pas gbtobig.pas

{ 作者:酷的仙贝 QQ:51860554 E-mail:howoco@163.com V1.1 } unit GbToBig; interface uses SysUtils, Classes,StdCtrls; type Tmode=(Gb2Big,Big2Gb); TGbToBig = class(TComponent) pr
www.eeworm.com/read/259580/11781389

h make2darraynocatch.h

// create a 2D array but do not catch exception thrown // when new fails to allocate sufficient memory #ifndef make2dArrayNoCatch_ #define make2dArrayNoCatch_ using namespace std; template
www.eeworm.com/read/259565/11781803

m seismic_examples1.m

% Seismic_examples1 % Example of the usage of seismic functions clear all presets global S4M % Create 50 reflection coefficient series from random Gaussian noise reflect=s_conve
www.eeworm.com/read/156572/11792006

sql 数据库脚本.sql

/***************************创建数据库***********************************/ USE master GO CREATE DATABASE Renshi GO USE Renshi GO /***************************创建部门表****************************
www.eeworm.com/read/156494/11797453

sql demo01.sql

create table t2 ( cnt int ); insert into t2 values ( 0 ); commit; create table t ( x int check ( x>0 ) ); create trigger t_trigger before insert or delete on t for each row begin if ( insert
www.eeworm.com/read/156494/11797801

sql demo06.sql

create table p ( x int primary key ); create table c ( x references p ); insert into p values ( 1 ); insert into p values ( 2 ); commit; insert into c values ( 2 ); prompt In another session: de
www.eeworm.com/read/156228/11817307

tutorial

Copyright (GPL) 2004, Mike Chirico mchirico@users.sourceforge.net or mchirico@comcast.net Compile ./configure --enable-threadsafe ATTACH DATABASE Examples of using attach database