我正在通过 phpmyadmin 重新开始使用 mysql。我正在尝试创建一个包含教育机构信息的简单表格。我需要帮助来确定如何构建表格字段。特别type
是create
和status
。其中两个涉及选项。
create table academy
(
id int not null auto_increment,
name varchar(25) not null,
street_address varchar(50) not null,
city char(25) not null,
state char(25) not null,
country char(25) not null,
primary key (id),
);
纯文本学院中表格的详细信息
- 姓名 ID
- 自动递增
- 街道地址
- 州/国家
- 电话
- 电子邮件
- 类型
- 初级
- 中学
- 中学
- 创建 - (日期学院开始)
- 地位
- 积极的
- 不活跃