摘要: -- 索引语法 # 创建索引 create table tb_1( id int primary key comment 'ID' auto_increment , name varchar(20) , salary int default 3000 ) ; insert into tb_1(nam 阅读全文
posted @ 2021-08-13 11:41 Alice只敲代码不秃头 阅读(140) 评论(0) 推荐(0) 编辑
摘要: create table tableA ( id int primary key , name varchar(20) ) ; create table tableB( id int primary key , name varchar(20) , tableA_id int ) ; insert 阅读全文
posted @ 2021-08-13 11:39 Alice只敲代码不秃头 阅读(42) 评论(0) 推荐(0) 编辑