gpt4 book ai didi

sql - 创建一个没有列的空白表

转载 作者:行者123 更新时间:2023-12-03 15:38:43 25 4
gpt4 key购买 nike

是否可以创建没有任何列的表?如果是,那么我如何在 oracle 中做到这一点。

最佳答案

  • 创建没有列的表:
    CREATE TABLE tab();
  • ORA-00904: : invalid identifier

    1. Create with one column and try to drop it:
      CREATE TABLE tab(t INT);ALTER TABLE tabDROP COLUMN t;

    ORA-12983: cannot drop all columns in a table

    The construct with no column does not have any sense. If you need table as placeholder use DUAL like:

    SELECT 1 + 1 AS result
    FROM dual;

    关于sql - 创建一个没有列的空白表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32961327/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com