代码搜索:CreateTable
找到约 333 项符合「CreateTable」的源代码
代码结果 333
www.eeworm.com/read/464218/7167569
ddp createtable.ddp
www.eeworm.com/read/464218/7167593
dfm createtable.dfm
object CreateTableForm: TCreateTableForm
Left = 584
Top = 95
BorderStyle = bsDialog
Caption = 'Create Table...'
ClientHeight = 354
ClientWidth = 499
Color = clBtnFace
Font.Char
www.eeworm.com/read/445307/7596664
sql createtable.sql
--GWAP2.0-新豆网建表脚本
--删除数据库库xindou
drop database if exists xindou;
--建里数据库库xindou,并指定解码集为gb2312
--create database if not exists xindou default character set gb2312;
--建里数据库库xindou,并指定解码集为utf8
www.eeworm.com/read/298982/7902483
sql createtable.sql
create table Admininfo(
ano varchar(10) primary key,
aname nvarchar(20) not null,
code varchar(20) not null,
)
create table Department(
dno varchar(6)primary key,
dname nvarchar(20)not n
www.eeworm.com/read/315790/13536522
txt createtable.txt
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[USER_TABLE]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[USER_TABLE];
if exists (select * from dbo.sysobjects