$hive
hive> show databases;
OK
default
hive> create database myDatabase;
OK
hive> use myDatabase;
OK
hive> create table myTable(id int,name string);
OK
hive> show tables;
OK
myTable
hive> desc myTable;
OK
id int
name string
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["難以理解","hardToUnderstand","thumb-down"],["資訊或程式碼範例有誤","incorrectInformationOrSampleCode","thumb-down"],["缺少我需要的資訊/範例","missingTheInformationSamplesINeed","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-07-11 (世界標準時間)。"],[[["This guide demonstrates how to use Apache Hive with a Dataproc Metastore service by launching a Hive session on a Dataproc cluster."],["You must first create a Dataproc Metastore service and attach it to a Dataproc cluster, including setting the Hive metastore password."],["Connect to Hive through an SSH connection to the associated Dataproc cluster VM instance."],["Once connected, you can run Hive commands to create and manage databases and tables, as demonstrated with the `myDatabase` and `myTable` examples."],["The guide also presents examples of how to perform commands such as showing databases and tables, creating databases and tables, and showing descriptions of the tables."]]],[]]