回答:
||
代わりに使用してみてください+
select locationname || '<p>' from location;
|| 演算子は「連結」です-オペランドの2つの文字列を結合します。
COALESCE(nullable_field, '') || COALESCE(another_nullable_field, '')
||
オペレータは、SQLiteので連結したものです。このコードを使用してください:
select locationname || '<p>' from location;
比較のために、
SQLite || Oracle CONCAT(string1、string2)または|| MySQL CONCAT(string1、string2、string3 ...)または|| PIPES_AS_CONCATが有効な場合 Postgres CONCAT(string1、string2、string3 ...)または|| Microsoft SQL Server 2012+ CONCAT(string1、string2、string3 ...)または+ Microsoft Access +
CONCAT(string1, string2, string3...)
||
、PIPES_AS_CONCAT
モードが有効な場合にもサポートします。