課程
/后端開發(fā)
/Java
/SpringBoot+MyBatis搭建迷你小程序
2-4的,謝謝謝謝
2018-08-09
源自:SpringBoot+MyBatis搭建迷你小程序 2-4
正在回答
CREATE TABLE tb_area (
area_id int(2) NOT NULL auto_increment,
area_name varchar(200) NOT NULL,
priority int(2) NOT NULL DEFAULT'0',
create_time datetime DEFAULT NULL,
last_edit_time datetime DEFAULT NULL,
PRIMARY KEY(area_id),
UNIQUE KEY UK_AREA(area_name)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
丨越丨 提問者
謝謝啦
舉報(bào)
SpringBoot+MyBatis搭建小程序后臺(tái)
3 回答為什么建表語(yǔ)句總是報(bào)錯(cuò)?
4 回答關(guān)于sql語(yǔ)句的疑問
1 回答在MySQL Workbench中建表,為什么不能建DATETIME()的類型
1 回答刪除調(diào)試到return modelMap語(yǔ)句時(shí)跳轉(zhuǎn)至InvocableHandlerMethod報(bào)錯(cuò)?
3 回答老師最后說的Mybatis的mapper自動(dòng)生成工具有誰(shuí)知道嗎?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-08-09
CREATE TABLE tb_area (
area_id int(2) NOT NULL auto_increment,
area_name varchar(200) NOT NULL,
priority int(2) NOT NULL DEFAULT'0',
create_time datetime DEFAULT NULL,
last_edit_time datetime DEFAULT NULL,
PRIMARY KEY(area_id),
UNIQUE KEY UK_AREA(area_name)
)ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
2019-02-01
謝謝啦