반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- math
- PANDAS
- dataframe
- Python
- Kotlin
- Mac
- google apps script
- 파이썬
- Apache
- Google Excel
- Tkinter
- GIT
- PySpark
- SQL
- Java
- c#
- django
- Google Spreadsheet
- matplotlib
- hive
- Excel
- gas
- list
- numpy
- string
- PostgreSQL
- Redshift
- array
- Github
Archives
- Today
- Total
목록2024/08/06 (2)
달나라 노트
Hive : show create schema (schema information)
Hive에서 schema의 정보를 보고 싶으면 show create schema을 이용하면 됩니다. Syntaxshow create schema schema_name; show create schema test_schema;-- ResultCREATE DATABASE `test_schema`LOCATION '~~' show create schema를 사용하면 위처럼 schema와 schema의 타겟 위치가 출력됩니다.
SQL/Apache Hive
2024. 8. 6. 21:08
Hive : show create table (table 정보 보기, table column list, table information)
Hive에서 table에 있는 column 등 table의 정보를 보고 싶으면 show create table을 이용하면 됩니다. Syntaxshow create table schema.table; show create table schema.table;-- ResultCREATE TABLE `test_schema.test_table` ( `id` bigint, `name` string, `price` bigint)ROQ FORMAT SERDE 'org.apache.hadoop.hive.ql.io.orc.OrcSerde'SRORED AS INPUTFORMAT 'org.apache.hadoop.hive.ql.io.orc.OrcInputFormat'OUTPUTFORMA..
SQL/Apache Hive
2024. 8. 6. 21:01