반응형
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 |
Tags
- numpy
- GIT
- Google Excel
- google apps script
- list
- Java
- hive
- Google Spreadsheet
- Tkinter
- PySpark
- PostgreSQL
- dataframe
- 파이썬
- PANDAS
- matplotlib
- gas
- array
- SQL
- Apache
- Kotlin
- Redshift
- math
- Mac
- Github
- Excel
- Python
- string
- django
- c#
Archives
- Today
- Total
목록show create table (1)
달나라 노트
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