代码搜索:Create

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

代码结果 10,000
www.eeworm.com/read/338393/12310421

sql ppsdatabase.sql.sql

drop database ProductionShow go Create database ProductionShow Go use ProductionShow go create table member_info ( M_ID int primary key not null identity(1,1), M_username varchar(50) n
www.eeworm.com/read/338050/12326663

sql ltrain.sql

CREATE TABLE ltrain (lid Int Not Null, direct TinyInt Not Null, tid Int Not Null, tType Tinyint )
www.eeworm.com/read/338050/12326665

sql lhotel.sql

CREATE TABLE lhotel (lid Int Not Null, hid Int Not Null, rType Tinyint, rdays Tinyint )
www.eeworm.com/read/338050/12326667

sql lres.sql

CREATE TABLE lres (lid Int Not Null, rid Int Not Null, rType Tinyint, rTimes Tinyint )
www.eeworm.com/read/338050/12326669

sql lamuse.sql

CREATE TABLE lamuse (lid Int Not Null, Iid Int Not Null, aTimes Tinyint )
www.eeworm.com/read/338050/12326673

sql lplane.sql

CREATE TABLE lplane (lid Int Not Null, direct TinyInt Not Null, pid Int Not Null )
www.eeworm.com/read/338050/12326687

sql area.sql

CREATE TABLE Area (AreaId Int Primary Key IDENTITY, AreaName Varchar(40) NOT NULL, AreaType Smallint NOT NULL )
www.eeworm.com/read/251644/12328610

cpp val2.cpp

/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 19
www.eeworm.com/read/251550/12338186

tk puzzle.tk

#!/usr/bin/wish -f # First we create the image. Then we configure the frame which will hold the pieces of # the image that will form the puzzle. This we pack with a little padding. set image [image
www.eeworm.com/read/251550/12338279

tk canvas.tk

#!/usr/bin/wish -f # First we create the canvas and then some objects to display on it. set c [canvas .c -width 400 -height 300 -relief sunken -bd 2] set image [image create photo -file caption.gif