【多选题】一个表创建完成后,我们可以使用那些语句查看表的相关信息?
A. hive (library)> show create table students;(查看表的创建信息) B. hive (library)> describe students;(或desc students,查看表的字段信息) C. hive (library)> describe formatted students;(查看表的详细属性信息) D. hive (library)> describe extended students;(查看表的详细信息) hive (library)> show partitions students;(查看表的分区信息)
A. hive (library)> show create table students;(查看表的创建信息) B. hive (library)> describe students;(或desc students,查看表的字段信息) C. hive (library)> describe formatted students;(查看表的详细属性信息) D. hive (library)> describe extended students;(查看表的详细信息) hive (library)> show partitions students;(查看表的分区信息)
举一反三
- 智慧职教: 在MySQL中,SHOW CREATE TABLE语句不仅可以查看创建表时的定义语句,还可以查看表的。
- 在MySQL中,SHOW CREATE TABLE语句不仅可以查看创建表时的定义语句,还可以查看表的字符编码
- 在MYSQL数据库中的查看操作描述正确的是哪个() A: 查看数据库用show关键字 B: 查看一张表用show关键字 C: 查看表中的一个字段用desc关键字 D: 查看表中的数据用query关键字
- 在MySQL中,可以通过SHOW CREATE TABLE、DESCRIBE、DESC和( )语句查看表结构。
- hive上查看sql执行计划的命令是什么? A: show B: explain C: describe D: list