示例SQL:

drop temporary table if exists testdb.tmp_test_table;
create temporary table testdb.tmp_test_table ( id integer, name varchar(20) );
insert into testdb.tmp_test_table values (1, 'zifeiy'), (2, 'balala');
drop temporary table testdb.tmp_test_table;

相关文章:

  • 2022-12-23
  • 2021-12-31
  • 2021-05-19
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-19
  • 2021-09-29
  • 2021-07-28
  • 2022-12-23
  • 2021-08-18
  • 2022-12-23
相关资源
相似解决方案