$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-02-11 UTC。"],[[["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."]]],[]]