gwynfijones
IS-IT--Management
Is there any way that i can create a join using the today function ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
begin tran
create view combo_data as
select a.*,b.week_no
from table1 a, weeks b
where getdate() = b.co_date
commit tran