Oracle では、「comment on」コマンドを使用してテーブルのコメントを変更できます。このコマンドはテーブルまたはフィールドを説明する、つまりコメントを追加するために使用されます。構文は「comment on table テーブル名」です。 'テーブルのコメント' 情報';"。
このチュートリアルの動作環境: Windows 10 システム、Oracle 11g バージョン、Dell G3 コンピューター。
Oracle のコマンドのコメントを使用して、テーブルまたはフィールドを説明します。
使用法は次のとおりです:
1. テーブルの説明:
comment on table table_name is '对表的说明';
2. テーブル内の列の説明:
comment on column table.column_name is '对表中列的说明';
3.テーブルの説明を表示します
select * from user_tab_comments where table_name = 'employees';
4. テーブル
select * from user_col_comments where table_name = 'employees';
の列の説明を表示します
select * from user_col_comments where comments is not null;
5. データベース
comment on table employees is ''; comment on column employees.salary is '';
内のすべてのテーブルの列の説明を表示します6. テーブルレベルまたは列レベルの説明を削除し、すぐに空に設定します。 rrreee 推奨チュートリアル: 「
Oracle Video Tutorial###」###以上がOracleでテーブルのコメントを変更する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。