EricDraven
Programmer
Is there anyway in SQL of searching a field without case sensitivity? For example:
would return exactly the same results as
and all other capitalisation variations of the name. I arent worried about spelling, just the case of the surname.
Many thanks in advance
When your feeling down and your resistance is low, light another cigarette and let yourself go
Code:
Select * from MyTable
where Surname = "MacDougal"
Code:
Select * from MyTable
where Surname = "Macdougal"
Many thanks in advance
When your feeling down and your resistance is low, light another cigarette and let yourself go