如何创建一个查询,如果存在一条或多条记录,则该查询设置为 true?
我想创建一个像这样的查询:
@step1_completed = IF 1 or more records exists return true, else false
I want to create a query like so:
@step1_completed = IF 1 or more records exists return true, else false
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
exist?
方法就是为此创建的:它将执行查询来检查表中是否存在单个记录,如果存在,则返回
true
。The
exist?
method was made for this:It will do a query to check if a single record for the table exists and will return
true
if it does.假设
record
是一个模型,Assuming
record
is a model,怎么样:
How about the following: