Stock Prices Of APPL,AMZN,FB,GOOG,NFLX
Stock Prices of Amazon Apple Facebook Google Netflix in the year 2018
@kaggle.ratnarohith_stock_prices_of_applamznfbgoognflx_in_2018
Stock Prices of Amazon Apple Facebook Google Netflix in the year 2018
@kaggle.ratnarohith_stock_prices_of_applamznfbgoognflx_in_2018
CREATE TABLE aapl (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE
);
CREATE TABLE amzn (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE fb (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE goog (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE nflx (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
Anyone who has the link will be able to view this.