Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用连接到 DB2 数据库的 AQT。我正在尝试在类型和长度完全相同(varchar2)的列上加入 2 个表,它们是 NULLABLE 和 NOT UNIQUE。
select count(*) from table1 a inner join table2 b on a.column1 = b.column1
结束我得到的错误是“a.column1 在它使用的上下文中无效”
那么是因为这些列不是键、NULLABLE 和 NOT UNIQUE 还是有其他原因?