SQL PostgreSQLで null を複数回 union all すると、勝手に text型になる?
現象の発生時
下記のようなSQLを実行してみてください。
select 1, 'text', null
union all
select 2, 'text', null
union all
select 3, 'text',...
SQL
PostgreSQL
VB.NET