gpt4 book ai didi

mysql - 获取不同的行

转载 作者:行者123 更新时间:2023-11-29 17:47:49 25 4
gpt4 key购买 nike

我有两个表:

  • bookings(id,lessons_id,user_id,permit_id)
  • lessons(id,name,date)

我需要选择 user_id <>$user 所在的所有类(class)

我已经完成了以下操作,但并不完全正确。

$user = Auth::id();
$lesson = DB::table('lessons')
->whereNotExists(function ($query) {
$query->select(DB::raw(1))
->from('bookings')
->whereRaw('bookings.lessons_id', '=', 'lessons.id')
->where(' bookings.user_id',' <>', '$user');
})

->get();

最佳答案

尝试使用 whereNotExists 函数:

DB::table('lessons')
->whereNotExists(function ($query) {
$query->select(DB::raw(1))
->from('bookings')
->whereRaw('bookings.lessons_id = lessons.id AND
bookings.user_id = ?', [$user]);
})
->get();

这将对应于以下原始 MySQL 查询:

SELECT *
FROM lessons t
WHERE NOT EXISTS (SELECT 1 FROM bookings b
WHERE b.lessons_id = t.id AND b.user_id = 2);

关于mysql - 获取不同的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49665420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com