作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 2 张 table :
Item: Item Name, Format (D/B), Item_ID
Rentals: Item_ID, date_borrowed, date_returned
我需要找到此时尚未出租的所有 DVD(D 格式)。谁能分享我可以使用的联接查询吗?我使用下面的代码,但结果仅返回 56 个预期元素中的 16 个
SELECT*from Item LEFT JOIN transactions on Item.Item_ID = transactions.Item_ID WHERE date_returned is not NULL and format = 'D';
最佳答案
连接本身非常简单:
SELECT * FROM Item i
LEFT JOIN Rentals r on R.Item_ID = i.Item_ID
WHERE r.date_borrowed IS NULL AND i.Format = "D";
但您的数据库中可能需要更多逻辑,因为“目前未租用”可以通过几种不同的方式进行量化。
关于mysql - 查询查找所有未出租的 DVD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27360174/
我是一名优秀的程序员,十分优秀!