Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I can not get this SQL core to function. CREATE TABLE bitcoin _ data ( Date DATE, Open NUMERIC ( 2 0 , 5 )

I can not get this SQL core to function.
CREATE TABLE bitcoin_data (
Date DATE,
Open NUMERIC(20,5),
High NUMERIC(20,5),
Low NUMERIC(20,5),
Close NUMERIC(20,5),
Volume NUMERIC(20,5),
Market_Cap NUMERIC(20,5)
);
--------------------------------------------------------------------------------
/* Copy Statement */
--------------------------------------------------------------------------------
COPY bitcoin_data
FROM 'D:\DTSC660\bitcoin_data.csv'
WITH (FORMAT CSV, HEADER);
--------------------------------------------------------------------------------
/* Select Statement */
--------------------------------------------------------------------------------
SELECT * FROM bitcoin_data LIMIT 10;
--------------------------------------------------------------------------------
/*Part 2*/
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
/* Query 1*/
--------------------------------------------------------------------------------
SELECT *
FROM bitcoin_data;
--------------------------------------------------------------------------------
/* Query 2*/
--------------------------------------------------------------------------------
SELECT trans_date, CAST(code_size AS DECIMAL)/ transactions AS difficulty
FROM bitcoin_data;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Prepare a short profile of Henry words worth Longfellow?

Answered: 1 week ago

Question

What is RAM as far as telecommunication is concerned?

Answered: 1 week ago

Question

Question 1: What is reproductive system? Question 2: What is Semen?

Answered: 1 week ago

Question

Describe the sources of long term financing.

Answered: 1 week ago