sql Lecture39_udemy
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql Lecture39_udemy相关的知识,希望对你有一定的参考价值。
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;
以上是关于sql Lecture39_udemy的主要内容,如果未能解决你的问题,请参考以下文章
学习笔记市场机制设计
PyTorch Lecture 07: Wide and Deep
原Andrew Ng斯坦福机器学习——Lecture 6_Logistic Regression
linkedlist--lecture-4
Notes on Logic-lecture 1
深度学习与自然语言处理_斯坦福cs224d Lecture 2