Viewing 5 posts - 1 through 5 (of 5 total)
Ahh... Yes, so it would be something like this....
SELECT c.course_name AS CourseName, c.course_number AS CourseNum, c2.course_name AS PreName, c2.course_number AS PreNum
FROM Prereq p
INNER JOIN Course c ON...
March 28, 2019 at 1:24 pm
I figured it out!
SELECT c.course_name AS CourseName, c.course_number AS CourseNum, c2.course_name AS PreName, c2.course_number AS PreNum
FROM Prereq p, Course c, Course c2
WHERE p.course_number = c.course_number
AND p.prereq...
March 28, 2019 at 8:47 am
Thanks for your help! This is a lot more complicated that I had anticipated.... I'm exploring the ranking...
The periodic can only have 1 date....
The type...
June 1, 2017 at 9:44 am
So I'm getting closer...
SELECT t.id, Max(t.type) AS MaxOftype, Max(t.date1) AS MaxOfdate1
FROM Table1 AS t
WHERE (((t.type) Is Null Or (t.type)="" Or (t.type)="periodic"))
GROUP BY t.id;
I get...
June 1, 2017 at 7:35 am
I've tried
select id, type, date1from Table1 as t
where (t.type Is
June 1, 2017 at 7:12 am
Viewing 5 posts - 1 through 5 (of 5 total)