Home query-for-getting-recorded-signed-programs
Post
Cancel

query-for-getting-recorded-signed-programs

create view vw_signedprograms as   select r.*  from program p  inner join recorded r   on p.starttime = r.progstart   and p.title = r.title   and p.subtitle = r.subtitle   and p.subtitletypes like '%SIGNED%';

then

mysql> select * from vw_signedprograms;

This post is licensed under CC BY 4.0 by the author.