→ 🚀What's New? Explore Lansweeper's Fall 2024 Updates! Fall Launch Blog !
‎09-15-2020 02:05 PM
select ...
tables
FROM tblAssets
inner join
inner join
WHERE (tblAsset.AssetName = '%AAA%' or tblAsset.AssetName = '%BBB%' or tblAsset.AssetName = '%BBB%') ..... I do 6 filters but the result is showing only the first 3 or only 3 of the filtered assets. Also if one of them have NULL values, I want to show.
Could you please assist?
Thank you.
‎09-15-2020 03:52 PM
WHERE (tblAsset.AssetName IS NULL
OR tblAsset.AssetName LIKE '%AAA%'
OR tblAsset.AssetName LIKE '%BBB%'
OR tblAsset.AssetName LIKE '%BBB%')
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now