subject
Computers and Technology, 16.07.2021 01:00 hmu323

The data to be loaded in the database is provided to you in three CSV files. You will use thefollowing 3 files, located in D2L (location. csv, temperature. csv, and wind. csv),for this Assignment. Open each file and familiarize yourself with the data format. Thedata in these files is interpreted as follows: location. csv: station name, latitude, longitude
wind. csv: station name, year, month, wind speed
CREATE TABLE location(
stationname varchar(50),
latitude int,
Longitude int,
PRIMARY KEY(stationname));
CREATE TABLE wind(
stationname varchar(50) ,
year int,
month varchar(50),
Windspeed int,
PRIMARY KEY(year, month),
FOREIGN KEY (stationname));
CREATE TABLE temperature(
stationname varchar(50) ,
year int,
month varchar(50),
temperture int,
FOREIGN KEY (stationname) REFERENCES location(stationname)
FOREIGN KEY (year) REFERENCES wind(year)
FOREIGN KEY (month) REFERENCES wind(month)
);

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 06:30
Requirement types discussed during software development include functional and color scheme nonfunctional and code style constraint and nonfunctional fashionable and functional.
Answers: 2
question
Computers and Technology, 22.06.2019 08:00
What is the algorithm for building a binary tree program
Answers: 2
question
Computers and Technology, 23.06.2019 09:30
The place where the extended axis of the earth would touch the celestial sphere is called the celestial
Answers: 1
question
Computers and Technology, 23.06.2019 18:20
What is wi-fi infrastructure? a metropolitan area network that uses radio signals to transmit and receive data a communications technology aimed at providing high-speed wireless data over metropolitan area networks a means by which portable devices can connect wirelessly to a local area network, using access points that send and receive data via radio waves includes the inner workings of a wi-fi service or utility, including the signal transmitters, towers, or poles and additional equipment required to send out a wi-fi signal
Answers: 2
You know the right answer?
The data to be loaded in the database is provided to you in three CSV files. You will use thefollowi...
Questions
question
Mathematics, 01.07.2020 15:01
question
Mathematics, 01.07.2020 15:01
question
English, 01.07.2020 15:01
question
Mathematics, 01.07.2020 15:01