我有了MYSQL源码,怎么建表啊

来源:百度知道 编辑:UC知道 时间:2024/06/17 05:44:39
create table PRODU
(
VIDEONAME VARCHAR2(160),
PATH VARCHAR2(160)
)
tablespace USERS
pctfree 10
pctused 40
initrans 1
maxtrans 255
storage
(
initial 128K
next 128K
minextents 1
maxextents 4096
pctincrease 0
);
源码是这样的

mysql 导入库
命令格式为:
source file

create table [PRODU]//要加中括号吧 你试试
(
VIDEONAME VARCHAR2(160),
PATH VARCHAR2(160)
)
tablespace USERS
pctfree 10
pctused 40
initrans 1
maxtrans 255
storage
(
initial 128K
next 128K
minextents 1
maxextents 4096
pctincrease 0
);

你直接用mysql-front多好,把时间花在建库上,不如把时间放在做站上,
中文版的前端,操作mysql就和操作mssql的企业管理器一样简单方便