代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/141805/5768322
sql create.sql
drop table customer;
drop table salesrep;
create table salesrep
(salesrepid varchar(3) constraint pk_salesrep primary key,
name varchar(24));
insert into salesrep
values ('876', 'Clyde Webster');
in
www.eeworm.com/read/141805/5768330
sql create.sql
drop table enrollment;
drop table student;
drop table course;
create table student
(studentid varchar(3) constraint pk_student primary key,
name varchar(36));
insert into student
values ('123', '
www.eeworm.com/read/141805/5768345
sql create.sql
-- create tables for CMP roster application
drop table league;
drop table player;
drop table team;
drop table team_player;
commit;
create table league (
id VARCHAR(8) CONSTRAINT pk_league PRIMARY
www.eeworm.com/read/141805/5768364
sql create.sql
drop table storagebin;
drop table widget;
create table widget
(widgetid varchar(3) constraint pk_widget primary key,
description varchar(50),
price decimal (10,2));
insert into widget
values ('876',
www.eeworm.com/read/141298/5773068
xpm create.xpm
/* XPM */
static char * create_xpm[] = {
"22 22 232 2",
" c None",
". c #8F7F6E",
"+ c #8B7C6B",
"@ c #887969",
"# c #857666",
"$ c #817364",
"% c #7E7062",
"& c #7B6D5F",
"* c #776B5D",
"=
www.eeworm.com/read/140283/5793032
cpp create.cpp
/**
Train an example error MLP network (GREN network)
Error: squared eucledian distance from correct point ( e = \sqrt( (x - x_o)^2 + ( y - y_o)^2)
some useful parameter settings:
With arirh
www.eeworm.com/read/131315/5934958
c create.c
/*-
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are perm
www.eeworm.com/read/131315/5939390
c create.c
/* $Header: Create.c,v 1.14 88/02/02 19:02:31 jim Exp $ */
/* Copyright Massachusetts Institute of Technology 1985 */
#include
/*
* XMenu: MIT Project Athena, X Window syste
www.eeworm.com/read/131315/5946357
c create.c
/* create.c Larn is copyrighted 1986 by Noah Morgan. */
#include "header.h"
extern char spelknow[],larnlevels[];
extern char beenhere[],wizard,level;
extern short oldx,oldy;
/*
makeplayer()
subrou