2005-02-16, 11:51 PM
I'm trying to get a list of all recorded shows including the friendly name of the channel, I'm not extremely sucessfull. ;-)
I get an error running this:
select p.name, p.description, rs.filename, rs.manual_start_time, rs.manual_end_time, c.name
from programme as p, recording_schedule as rs
LEFT OUTER JOIN channel as c ON c.oid = rs.manual_channel_oid
where p.oid=rs.oid and rs.status=2
It says the join expression isn't supported.
And a last question, is there such a live-command window for MS-access where I can test run my queries. Now I have to run a small console application to verify my SQL syntax, very time consuming.
Thanks for all help!
I get an error running this:
select p.name, p.description, rs.filename, rs.manual_start_time, rs.manual_end_time, c.name
from programme as p, recording_schedule as rs
LEFT OUTER JOIN channel as c ON c.oid = rs.manual_channel_oid
where p.oid=rs.oid and rs.status=2
It says the join expression isn't supported.
And a last question, is there such a live-command window for MS-access where I can test run my queries. Now I have to run a small console application to verify my SQL syntax, very time consuming.
Thanks for all help!