I am using SQL Server to search through multiple columns (over 20 in reality) in my table containing part of a certain value, but I keep getting the error
'CONCAT' is not a recognized built-in function name
I am running SQL Server 2017 and the function should be available, so I'm not sure if there's an error in my query or if something else is causing the error.
SELECT *
FROM table
WHERE
CONCAT(col1, col2, col3, col4, col5, col6, col7, col8) LIKE '%val%'
Thank you in advance
'somewhere' || 'wolfenstein' like '%wherewolf%'returns true.