Search Results

0
votes

Problem with SQL Join

It's your conditions in the where clause: (tblScheduling.SchedulingYearID = @SchedulingYearID) when there is no tblScheduling info this wil always fail. Add (((tblScheduling.Sched …
0
votes

Simple SQL problem (MySQL)

If this is a query you will run many times, I would consider to make a view which selects the most recent revision per pageid: create view LatestRevision as Select pageid, max(numb …
1
vote

Executing Access SQL Query Between Two Databases

You can link the table, if I remember correctly, you will have to give password once when creating the link. …