Vous pouvez écrire des requêtes comme celle-ci dans SQL Server :
--each [0-9] matches a single digit, this would match 5xx
SELECT * FROM YourTable WHERE SomeField LIKE '5[0-9][0-9]'
Vous pouvez écrire des requêtes comme celle-ci dans SQL Server :
--each [0-9] matches a single digit, this would match 5xx
SELECT * FROM YourTable WHERE SomeField LIKE '5[0-9][0-9]'