1
create table if not exists map_table like position_map_view;

使用它时,它给了我操作不允许的错误

4

1 回答 1

1

正如文档中所指出的,您需要使用CREATE TABLE AS,只需LIMIT 0在 SELECT 中使用:

create table map_table as select * from position_map_view limit 0;
于 2021-11-12T16:06:25.913 回答