代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/149194/12395314
sql family.sql
USE HrSys
GO
CREATE TABLE Family
(Id tinyint PRIMARY KEY IDENTITY,
Emp_Id int NOT NULL,
Name varchar(50) NOT NULL,
Sex char(2),
Age tinyint,
Relationship varchar(20),
www.eeworm.com/read/250384/12410964
pas gnugettext.pas
unit gnugettext;
(**************************************************************)
(* *)
(* (C) Copyright by Lars B. Dybdahl and others
www.eeworm.com/read/336594/12435092
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/336594/12435156
sql createindex.sql
CREATE INDEX "SCOTT"."姓名字段索引"
ON "SCOTT"."STUDENT"("NAME")
TABLESPACE "INDX"
www.eeworm.com/read/336594/12435277
sql createtesttable.sql
CREATE TABLE "TEMPUSER"."TESTTABLE" ("RECORDNUMBER" NUMBER(4) NOT
NULL, "CURRENTDATE" DATE NOT NULL)
TABLESPACE "USERS"
www.eeworm.com/read/148710/12435915
bas progman.bas
' This Module contains sub/functions to help you writing
' great installation apps.
'
' The functions in this module enable you to :
'
' Create Program Manager Groups (CreateProgman
www.eeworm.com/read/148690/12443520
sql createdb.sql
create table CommodityInfo
(
ID int,
ComoCode vchar(13) PRIMARY KEY,
ComoName vchar(50),
ComoPrice money,
ComoCount int,
ComoDisc int,
ComoClassNo int
);
insert into CommodityInfo value
www.eeworm.com/read/336419/12445558
java bankoperation.java
package Bank;
import java.util.Random;
public class BankOperation{
public static void main(String[] args){
int initialBalance = 500; //The initial account balance 初始化帐户余额
int totalCr
www.eeworm.com/read/336341/12450241
sql ddl.sql
CREATE TABLE Dealing (
DealingID int identity(1,1) Primary key ,
DealingDate datetime NOT NULL ,
DealingPrice money NOT NULL ,
UserName varchar(25) NULL ,
MemberCard varchar(20) NULL
)
www.eeworm.com/read/336286/12454579
sql jc_tables.sql
/*==============================================================*/
/* DBMS name: Microsoft SQL Server 2000 */
/* Created on: 2005-6-16 16:22:20