我正在尝试检查我的 sqlite 数据库中名为“Products”的表中是否存在特定 ID。
def existsCheck( db, id )
temp = db.execute( "select exists(
select 1
from Products
where promoID = ?
) ", [id] )
end
这是我当前的代码,但它返回一个数组,这意味着我必须先处理转换,然后才能将其用作布尔值。有什么想法可以更改它以使其返回值为 1 的 int 吗?