I have the following pass-through query
select *
from name n, product p, meet_master m where n.chapter=p.product_minor and p.prod_type='chapt' and ((m.meeting_type ='CHAP' and substring(m.meeting,3,2)=n.chapter)or (m.meeting_type='AFF') and substring(m.meeting,1,charindex('_',m.meeting)-1)=n.chapter )and m.begin_date>=getdate() and n.chapter='BO'
n.chapter='BO' I want to be able to create a prompt where the user can enter BO or ST or DU. How can I modify the part that creates that prompt when running the currey. Thanks for helping.
Jimmy
select *
from name n, product p, meet_master m where n.chapter=p.product_minor and p.prod_type='chapt' and ((m.meeting_type ='CHAP' and substring(m.meeting,3,2)=n.chapter)or (m.meeting_type='AFF') and substring(m.meeting,1,charindex('_',m.meeting)-1)=n.chapter )and m.begin_date>=getdate() and n.chapter='BO'
n.chapter='BO' I want to be able to create a prompt where the user can enter BO or ST or DU. How can I modify the part that creates that prompt when running the currey. Thanks for helping.
Jimmy