I have a drop down with three options(report 1, report 2, report 3), and on selecting one of them nothing gets update as I try to view my report.
SELECT
ProjInfo.ProjName,
ServerInfo.ServName,
ServerInfo.Type,
ServerInfo.Version
FROM ProjInfo, ServerInfo
WHERE Version IN(@ServerReport)
GROUP BY ServerInfo.Version, ServerInfo.Type, ProjInfo.ProjName
I think my Where
statement is wrong, but not sure how so.