我看到可以在vertica SQL中撰写查询,您可以通过以下方式比较3个参数
select * from table1 a
join table2 b on ...
join table3 c on ...
where a.id = b.id = c.id
是否等于
select * from table1 a
join table2 b on ...
join table3 c on ...
where a.id = b.id and b.id = c.id
或者它有不同的含义?
答案 0 :(得分:0)
b.id = c.id
将首先评估,并等于true
或false
。
然后将其与a.id
进行比较,chrome.runtime.sendMessage
可以是布尔值或等于0或1的数字。如果a.id是0或1以外的数字,则会出错。
话说回来,我认为这不是你想要的行为。)