I have the following query, looking for salespeople of 'BG'
.
SELECT *
FROM [dbo].[JobOrders]
where [salesperson] = 'BG'
When I use 'bg'
instead, I do not get results. To my understanding 'BG'
or 'bg'
would bring back the same results.
Is there a setting that would prevent this?