最佳答案
这里我试图创建如下例所示的视图:
例如:
create view view1
as
select table1.col1,table2.col1,table3.col3
from table1
inner join
table2
inner join
table3
on
table1.col4 = table2.col5
/* Here col4 of table1 is of "integer" type and col5 of table2 is of type "varchar" */
/* ERROR: operator does not exist: integer = character varying */
....;
注意: 在 sql 服务器中执行相同的查询,但在 postgreSQL 中得到上述错误。