2011-06-26, 09:29 PM
I want to be to able to filter out on specific channels in a sql call and I was wondering if the channel tables for merged channels repeats the name and channel number repeated for all the merged channels and just the channel.oid is different
As an example a query that works with unmerged data would be
Would this work the same with merged channels?
Martin
As an example a query that works with unmerged data would be
Code:
select scheduled_recording.name, event_details, channel.number
from scheduled_recording, channel
where scheduled_recording.channel_oid = channel.oid
and channel.number not in (3, 7)
Would this work the same with merged channels?
Martin