Here is a select statement I have been given by someone else (who is not available to answer why it doens't work).
select eqmtid
from ( select distinct eqmtid, eqmtid as sortorder
from hist_eqmtlist
where eqmtid is not null
union all select 'All Equipment' , NULL)
The error being returned is
Incorrect syntax near ')'.
I am creating an @param that will allow the end user to choose which eqmtid they woukd like to see the report for with the option of chosing 'All Equipment'
Thanks
select eqmtid
from ( select distinct eqmtid, eqmtid as sortorder
from hist_eqmtlist
where eqmtid is not null
union all select 'All Equipment' , NULL)
The error being returned is
Incorrect syntax near ')'.
I am creating an @param that will allow the end user to choose which eqmtid they woukd like to see the report for with the option of chosing 'All Equipment'
Thanks