-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
DROP TABLE IF EXISTS region;
CREATE TABLE region
(
region_seq BIGINT AUTO_INCREMENT,
continent VARCHAR(255) NOT NULL COMMENT '대륙',
country VARCHAR(255) NOT NULL COMMENT '나라',
region VARCHAR(255) NOT NULL COMMENT '지역',
created_ymdt DATETIME(6) NOT NULL COMMENT '등록일시',
PRIMARY KEY(region_seq),
KEY idx_continent_country(continent, country)
) COMMENT '지역';Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels