如何在 SQL 中返回条件布尔值
我有一个故事表、一个用户表和一个喜欢表。
我想对 Stories 表执行查询,其中将包含 user_liked (BOOLEAN TRUE 或 FALSE),具体取决于 Likes 表中是否有包含 Story id 和给定用户 id 的记录。
因此,从故事中选择所有(和 user_liked),其中如果该用户喜欢,则 user_liked 为 true,如果没有,则 user_liked 为 false。
希望这是有道理的吗?
I have a stories table, a users table and a likes table.
I want to perform a query on the stories table which will include user_liked (BOOLEAN TRUE or FALSE) based on whether there is a record in the likes table with both the story id and a given user id.
So, select all (and user_liked) from stories where user_liked is true if this user has liked and user_liked is false if not.
Hope that makes sense?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MS SQL Serer 本身不存在布尔数据类型。您应该使用 bit 日期类型。
在不知道您的确切架构和数据库规则的情况下,我认为这可能适合您。
The Boolean datatype doesn't exist in MS SQL Serer per se. You should use the bit datetype instead.
Without knowing your exact schema and database rules I think this may work for you.
这似乎有效:
我不知道存在()函数存在! ;)
@barry 和 @Scorpi0 - 谢谢你的想法
This seems to work:
I had no idea the exists() function existed! ;)
@barry and @Scorpi0 - Thanks for you ideas