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 10:00
Create a word problem that involves calculating the volume and surface area of a three-dimensional object. cube: surface area 6 s2 , volume s3
Answers: 3
question
Computers and Technology, 24.06.2019 03:00
Using a conditional expression, write a statement that increments numusers if updatedirection is 1, otherwise decrements numusers. ex: if numusers is 8 and updatedirection is 1, numusers becomes 9; if updatedirection is 0, numusers becomes 7.
Answers: 1
question
Computers and Technology, 24.06.2019 04:30
Which of the following terms refers to a collection of different types of software that share the goal of infiltrating a computer and making it do something? a- malware b- virus c- spyware d- trojan horse
Answers: 2
question
Computers and Technology, 24.06.2019 21:50
The use of phrases, fragments, and punctuation can influence the mood of a passage; keeping this in mind, how would you describe the mood of the followingpassage? "fog on the essex marshes, fog on the kentish heights, fog creeping into the cabooses of collier-brigs; fog lying out on the yards, and hovering in the riggingof great ships; fog drooping on the gunwales of barges and small boats. fog in the eyes and throats of ancient greenwich pensioners, wheezing by thefiresides of their wards; fog in the stem and bowl of the afternoon pipe of the wrathful skipper; fog cruelly pinching the toes and fingers of his shivering little'prentice boy on deck." (5 points)
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.12.2019 00:31
Questions on the website: 13722363