Question:Which of the following statements will cast the integer value 1 to type text?
A SELECT text(1) AS cast_integer;
B SELECT CAST(1, text) as cast_integer;
C SELECT 1::text AS cast_integer;
D SELECT 1 TO text AS cast_integer;
E SELECT CAST(1 AS text) AS cast_integer;
+ AnswerB C
+ Report