代码搜索:CreateTable
找到约 333 项符合「CreateTable」的源代码
代码结果 333
www.eeworm.com/read/360437/2961706
hpp createtable.hpp
/* Copyright (C) 2003 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Fou
www.eeworm.com/read/357924/3011065
sql createtable.sql
drop table Account_Holder_Transaction;
drop table Account_Hodler;
drop table Registration;
create table Registration
(
cRegistration_id int not null primary key,
cFirst_name char(50) not nul
www.eeworm.com/read/355736/3048585
h createtable.h
//---------------------------------------------------------------------------
#ifndef CreateTableH
#define CreateTableH
//-------------------------------------------------------------------------
www.eeworm.com/read/355736/3048586
cpp createtable.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include "CreateTable.h"
#include "sdappserver_tlb.h"
#include "gvar.h"
//-----
www.eeworm.com/read/475864/6767853
sql createtable.sql
use DiscRent
create table disc
(dname varchar(15)not null primary key,
role char(20) ,
area char(4),
time char(4),
type char(4),
currentnumber int check(currentnumber>=0 ),
totlenumber int che
www.eeworm.com/read/171984/9727824
sql createtable.sql
use
SMIS
go
create table student(
学籍号 nvarchar(10) not null primary key,
姓名 nvarchar(8) not null,
性别 nvarchar(2) default '男' check(性别 in('男','女')),
出生年月 nvarchar(7) null
)
go
create
www.eeworm.com/read/300822/13891449
sql createtable.sql
create table employee
( emp_no NUMBER(10, 0) NOT NULL,
emp_name VARCHAR2(30) NOT NULL,
emp_password VARCHAR2(30) NOT NULL,
primary key (emp_no)
);
creat
www.eeworm.com/read/204715/15334570
java createtable.java
import javax.xml.parsers.*;
import java.io.*;
import org.xml.sax.*;
import org.w3c.dom.*;
import java.awt.*;
class cols
{
String colname=null;
cols next=null;
cols(String name)
{
co