Details
Description
With, CONCAT(), skipping the commas between parameters is ok:
select concat('a' 'b' 'c');
Interestingly, this only works if all parameters are string literals. Also, this does not work with any other function I tried.
I'm not sure if this "a feature or a bug"... I'm reporting it just in case you are not aware of it.
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
It is not a concat() thing but general string literal behaviour
select 'a' 'b' 'c';