Answers for "UNION types text and bigint cannot be matched"

0

UNION types text and bigint cannot be matched

select 
first name,
last name,
address,
quantity
from table1
union all
first name,
last name,
null::int4 as quantity
from table2
Posted by: Guest on September-06-2021

Code answers related to "UNION types text and bigint cannot be matched"

Browse Popular Code Answers by Language