临时表
create temporary table tempMain(
main_id bigint not null,
main_age int not null,
main_name varChar(25) not null,
);
临时表不可使用 show tables 展示。
create temporary table tempMain(
main_id bigint not null,
main_age int not null,
main_name varChar(25) not null,
);
临时表不可使用 show tables 展示。