代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/414392/11114793
sql 日期流水号.sql
--自已做标识列的例子--流水号:日期+当日编号:
--创建视图,得到当前日期(因为函数中不能使用getdate())
create view v_getdate as select dt=convert(varchar,getdate(),112)
go
--创建得到最大id的函数
create function f_getid()
returns varchar(12)
www.eeworm.com/read/268411/11141117
sql doctor.sql
USE Hospital
GO
CREATE TABLE Doctor
( Id int IDENTITY PRIMARY KEY,
Name varchar(50) NOT NULL,
Sex varchar(2) NOT NULL,
Age int,
DeptId int,
Title varchar(50)
www.eeworm.com/read/413528/11152488
h bitmapmethods.h
/* Copyright (c) 2001, Nokia Mobile Phones. All rights reserved */
#ifndef __BITMAPMETHODS__
#define __BITMAPMETHODS__
#define KColourDepth EColor4K
//Ensure these libraries are linked again
www.eeworm.com/read/412823/11181571
pas preport.pas
{*
* > -- PReport.pas
*
* Copyright (c) 1999-2001 Takezou.
*
* This library is free software; you can redistribute it and/or modify it
*
www.eeworm.com/read/412483/11198478
cpp opc_hybridmodel.cpp
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
www.eeworm.com/read/266899/11208907
sql createtempuser-1.sql
CREATE USER "TEMPUSER" PROFILE "DEFAULT"
IDENTIFIED BY "tempuser" DEFAULT TABLESPACE "USERS"
ACCOUNT UNLOCK;
GRANT CREATE ANY TABLE TO "TEMPUSER" WITH ADMIN OPTION;
GRANT "CONNECT" TO "
www.eeworm.com/read/266899/11208954
sql createindex.sql
CREATE INDEX "SCOTT"."姓名字段索引"
ON "SCOTT"."STUDENT"("NAME")
TABLESPACE "INDX"
www.eeworm.com/read/266899/11209015
sql createtesttable.sql
CREATE TABLE "TEMPUSER"."TESTTABLE" ("RECORDNUMBER" NUMBER(4) NOT
NULL, "CURRENTDATE" DATE NOT NULL)
TABLESPACE "USERS"
www.eeworm.com/read/266780/11212968
txt jilu.txt
use jilu;
create table jilu(aa int,words varchar(23));
www.eeworm.com/read/412142/11214020
dpr shoufei.dpr
program ShouFei;
uses
Forms,
Windows,
Controls,
MainForm in 'MainForm.pas' {FormMain},
DataMod in 'DataMod.pas' {DataMD: TDataModule},
splash in 'SPLASH.PAS' {FormSplash},
Comm