hiddentao / squel

:office: SQL query string builder for Javascript
https://hiddentao.github.io/squel
MIT License
1.57k stars 231 forks source link

Does it handle mssql CONCAT #351

Open mkndn opened 6 years ago

mkndn commented 6 years ago

Does Squel handle mssql (version prior to 2012) CONCAT? i.e. Assume there is a query

select CONCAT('text', table.column_name) from table

. Will this be automatically converted to mssql (version prior to 2012) flavored concat. Because our mssql version doesn't support CONCAT keyward. Instead it should be

'text' + table.column_name