Hi, Is it possible to write a WHERE condition in MS SQL Server that will grab rows that:
- begin with a specified letter
- then have a decimal
- then anything else
I basically have a table that contains postcodes and I want all postcodes that belong to Birmingham - B followed by a number. Some postcodes are in there that start B and then another letter which do not belong to Birmingham, so I can't simply useLIKE 'B%'
.
Thanks!