繁花如伊
DDL是数据定义语言:用于定义数据库模式的规范表示法。它适用于架构级别。DDL命令是:create,drop,alter,rename例如:create table account ( account-number char(10), balance integer);DML是数据处理语言。它用于访问和处理数据。DML命令是:select,insert,delete,update,call例如 :update account set balance = 1000 where account_number = 01;