列表

详情


以下SQL语句是MaxCompute里的哪一类语言?create table if not exists sale detail( sop_name stin customer id string, total price double) partitioned by (sale_date string,region string);


A. DML

B. DDL

C. DCL

D. DAL

参考答案: B

详细解析:

DML数据操控语言,包括I、D、U操作; DDL数据定义语言,包括建表create 、删表 delete等; DCL数据查询语言,包括select等; DAL是数据访问层,是实现对数据表的Select(查询)、Insert(插入)、Update(更新)、Delete(删除)等操作


上一题