Monday, June 11, 2012

Concat string via MY SQL & PSQL

Hey guys,
      Do you know there is little bit difference to concat the string  under MY SQL & PSQL?

mysql:

update posts set title = concat(title, 'Hey')

psql:

update posts set title = title || 'Hey'


No comments:

Post a Comment