如何在 SQL 中返回条件布尔值

发布于 2024-11-15 07:06:20 字数 246 浏览 3 评论 0原文

我有一个故事表、一个用户表和一个喜欢表。

我想对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

狼性发作 2024-11-22 07:06:20

MS SQL Serer 本身不存在布尔数据类型。您应该使用 bit 日期类型。

字符串值 TRUE 和 FALSE 可以
转换为位值:TRUE 是
转换为 1 并且 FALSE 被转换
到 0。

在不知道您的确切架构和数据库规则的情况下,我认为这可能适合您。

Select u.UserId,
       s.StoryId 
       Cast((Case When l.UserId Is Null Then 0 Else 1 End) as bit) as [UserLiked]

From Users u
Left Join Likes l on u.UserId = l.UserId
Left Join Stories s on l.UserId = s.UserId
Where u.UserId = @SomeUserId

The Boolean datatype doesn't exist in MS SQL Serer per se. You should use the bit datetype instead.

The string values TRUE and FALSE can
be converted to bit values: TRUE is
converted to 1 and FALSE is converted
to 0.

Without knowing your exact schema and database rules I think this may work for you.

Select u.UserId,
       s.StoryId 
       Cast((Case When l.UserId Is Null Then 0 Else 1 End) as bit) as [UserLiked]

From Users u
Left Join Likes l on u.UserId = l.UserId
Left Join Stories s on l.UserId = s.UserId
Where u.UserId = @SomeUserId
秋风の叶未落 2024-11-22 07:06:20

这似乎有效:

SELECT s.*, exists (select l.id from likes l where l.user_id = '1' and l.story_id = s.id) as user_likes FROM stories s;

我不知道存在()函数存在! ;)

@barry 和 @Scorpi0 - 谢谢你的想法

This seems to work:

SELECT s.*, exists (select l.id from likes l where l.user_id = '1' and l.story_id = s.id) as user_likes FROM stories s;

I had no idea the exists() function existed! ;)

@barry and @Scorpi0 - Thanks for you ideas

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文