In short, below is a query in SQL Server that works and I want to run something similar in ArcGIS Pro. I don't want to use Field Calculator and add another field. Can it be done?
SELECT [STREETNAME], [street], [st_type]
FROM [db].[dbo].[ADDRESSES]
where STREETNAME = (street + ' ' + st_type)
Using the following in the Select By Attributes dialog box just says the expression has invalid syntax:
STREETNAME = street + ' ' + st_type
Other efforts include:
STREETNAME = street & ' ' & st_type
And:
STREETNAME = (street + ' ' + st_type)
I even tried:
STREETNAME = CONCAT(street + ' ' + st_type) - but I think I'm not understanding how to use this properly.