This should not be that difficult. I thought I had a basic understanding of RegEx, but obviously not.
I simply want want to find all records where the ComputerName field begins with AB or CD.
I am running this in Visual Studio, VB.Net against SQL Server.
I am trying things like: Select ComputerName from TableName where ComputerName like '[AB|CD]%'
I have tried every variation I can think of, but I just can't get it.
Thank you in advance!!
Many different variations using brackets, commas, pipes, carrots, etc.