我想要一个插入表格注释和列注释的脚本。所述脚本必须是唯一的并且在 Oracle 和 MySQL 上都能令人满意地运行。此外,我更喜欢用标准 SQL 编写它。
这就是我现在的做法。但它不适用于 MySQL。
comment on table F_Transaction
is 'Fact table for system transactions';
comment on column F_Transaction.Transaction_Date
is 'Date in which the transaction took place';
我应该使用什么 SQL 构造来实现我的目的?