python spark-sql-create-hive-tables.py
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python spark-sql-create-hive-tables.py相关的知识,希望对你有一定的参考价值。
# Use a different database name
create database dgadiraju_retail_db_txt;
use dgadiraju_retail_db_txt;
create table orders (
order_id int,
order_date string,
order_customer_id int,
order_status string
) row format delimited fields terminated by ','
stored as textfile;
load data local inpath '/data/retail_db/orders' into table orders;
create table order_items (
order_item_id int,
order_item_order_id int,
order_item_product_id int,
order_item_quantity int,
order_item_subtotal float,
order_item_product_price float
) row format delimited fields terminated by ','
stored as textfile;
load data local inpath '/data/retail_db/order_items' into table order_items;
create table customers (
customer_id int,
customer_fname varchar(45),
customer_lname varchar(45),
customer_email varchar(45),
customer_password varchar(45),
customer_street varchar(255),
customer_city varchar(45),
customer_state varchar(45),
customer_zipcode varchar(45)
) row format delimited fields terminated by ','
stored as textfile;
load data local inpath '/data/retail_db/customers' into table customers;
以上是关于python spark-sql-create-hive-tables.py的主要内容,如果未能解决你的问题,请参考以下文章
Python代写,Python作业代写,代写Python,代做Python
Python开发
Python,python,python
Python 介绍
Python学习之认识python
python初识