代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/406910/11432750
asv tutorial_transmit.asv
function tutorial
% Create the base stations
par.cellradius=1000;
par.sps=1;
par.km=1;
par.lm=2;
par.ncluster=2;
[xyb,fib,rombvec]=crecells(par.cellradius,par.sps,par.km,
www.eeworm.com/read/406910/11432756
m tutorial_channels.m
function tutorial
% Create the base stations
par.cellradius=1000;
par.sps=1;
par.km=1;
par.lm=2;
par.ncluster=2;
[xyb,fib,rombvec]=crecells(par.cellradius,par.sps,par.km,
www.eeworm.com/read/406910/11432777
m tutorial_gain.m
function tutorial
% Create the base stations
par.cellradius=1000;
par.sps=1;
par.km=1;
par.lm=2;
par.ncluster=2;
[xyb,fib,rombvec]=crecells(par.cellradius,par.sps,par.km,
www.eeworm.com/read/406776/11435819
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/405482/11461665
sql xk.sql
if exists (select * from sysobjects where id = object_id(N'[dbo].[xk_pxff]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[xk_pxff]
GO
if exists (select * from sysobjects
www.eeworm.com/read/405482/11461668
sql xk.sql
if exists (select * from sysobjects where id = object_id(N'[dbo].[xk_pxff]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[xk_pxff]
GO
if exists (select * from sysobjects
www.eeworm.com/read/405396/11463402
txt sql.txt
create table student
(学号 char(10) primary key,
姓名 char(10),
性别 char(2),
出生年月 char(8),
班级号 char(10)
foreign key (班级号) references class(班级号)
);
create table teacher
(教师号 char(10) primary ke
www.eeworm.com/read/404614/11481459
sql creat tables.sql
USE xs
CREATE TABLE xsXJ
( 学号 char(15) NOT NULL PRIMARY KEY,
姓名 char(20) NOT NULL,
性别 char(5) NOT NULL,
专业 char(20) NOT NULL,
班级 char(20) NOT NULL,
政治面貌 char (12) NOT NULL,
出生日期 da
www.eeworm.com/read/404596/11481638
txt 建库语句.txt
//数据库
CREATE DATABASE BookSale
ON
(NAME='BookSale_DATA',
FILENAME='f:\BookSale.MDF',
SIZE=5MB,
MAXSIZE=20MB,
FILEGROWTH=10%)
LOG ON
(NAME='BookSa
www.eeworm.com/read/404196/11490503
pas soundout.pas
unit soundout;
{-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); yo