CREATE OR REPLACE DIRECTORY DDL_TABLE_DIR AS '/aux/dbops/tables'; CREATE OR REPLACE DIRECTORY DDL_VIEW_DIR AS '/aux/dbops/views'; CREATE OR REPLACE DIRECTORY DDL ...
今回は、前回の「研修で扱ったSQLについてのまとめ」の続きとして、DDL(データ定義言語)について、まとめていきたいと思います。 というのも、前回まとめたのは、DML(データ操作言語)のSELECT文についてだったので、今回はもうひとつのSQLの種類である ...
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'; ...
🚀 SQL DDL Commands Explained When working with databases, DDL (Data Definition Language) commands are used to define and manage the structure of database objects such as tables, schemas, and indexes.
SQL COMMANDS SQL Core SQL: The central language used to manage relational databases. It’s divided into sublanguages for different purposes: DDL (Data Definition Language): Commands that define or ...