我有 2 个表 1 和表 2
table1
id,desc
table2
id,t1_id,desc
我如何根据 desc="something" 选择行
select * from table1 t1
left join table2 t2 on t1.id=t2.t1_id
where t1.desc='something'
表 1 中的数据具有 desc "something" 但它没有返回任何内容
我试过了
where "desc"='something'
但给予
不明确的列 desc 错误。
我如何从 postgreSQL 中 desc='something' 的表 1 中检索数据
非常感谢...