怎样用mysql建立一个仓库表,里面有仓库号,面积,电话号码等

怎样用mysql建立一个仓库表,里面有仓库号,面积,电话号码等
2024-12-15 00:31:09
推荐回答(2个)
回答1:

如果说不会用最旧版的那种黑白界面用命令的.
那就下载其他的.
记得好像有个叫SQL Yong的数据库.可以用那个

回答2:

Create table StoreInfo(
id int primary key not null auto_increment,
square float not null,
telephone varchar(15) not null);