Açıklaması şöyle
A type cast specifies a conversion from one data type to another.PostgreSQL accepts two equivalent syntaxes for type casts,1. the PostgreSQL-specific value::type and2. the SQL-standard CAST(value AS type).
1. Eski Yöntem
text
Örnek
Şöyle yaparız. Burada varchar(255) olan 3 sütun birleştiriliyor.
SELECT(((instructors.title::text || ' '::text) || instructors.first_name::text) || ' '::text) || instructors.last_name::textAS nameFROM instructors;
Hiç yorum yok:
Yorum Gönder