Viewing 9 posts - 1 through 9 (of 9 total)
I think i got it.
Can someone please double check?
SELECT d.date_, SUM(w.workout_hours) AS Total_Workout_High, SUM(w.workout_hours) AS Total_Workout_Low
FROM workout_table w
JOIN
athlete_table a ON...
October 25, 2018 at 10:21 pm
Can anyone help with this question please?:
Create a table to show the aggregate workout hours for each “Hard” and “Basic” level of workout endurance by day:
October 25, 2018 at 9:51 pm
October 25, 2018 at 11:17 am
October 25, 2018 at 4:40 am
Here's the code to create the table:
CREATE TABLE track_table (date_ VARCHAR(4), athleteID VARCHAR(1));
INSERT...
October 25, 2018 at 4:04 am
October 25, 2018 at 2:48 am
If you could help me with question 3 in particular please?
A distribution of # days active within a week: Create a table to show how many athletes...
October 25, 2018 at 2:47 am
Correct. I think it's just poorly worded. Creating tables doesn't make sense. But are instead SELECT commands.
October 25, 2018 at 2:39 am
Sorry that was my mistake.
If you could or if anyone else could please assist, that would be greatly appreciated =
October 25, 2018 at 2:07 am
Viewing 9 posts - 1 through 9 (of 9 total)