我有兩個名爲PERSON和DOCUMENTS的mongodb表。我想從PERSON表中獲取其ID爲DOCUMENT表中的personName。在關係表中,查詢就像這樣。 SELECT personName from PERSON where personID in (SELECT personID from ID)
我試圖使用聚合和$查找功能,但它沒有得到我想要的答案。我使用的mongo查詢是
我有2個表: 產品: ProductId | Name | Description
----------+-------+-------------------------------------
1 | shirt | this is description for shirt
2 | pent | this is description for pent
ProductOve
我問SO this question few days ago但沒有有效的答案。 的問題是,下面的查詢: SELECT t1.patient_id,
CONVERT(aes_decrypt(t4.patient_name_en, :encKey) USING utf8mb4) as patient_name_en,
min(t3.date_of_visit) as date_of_visit,
我想在Laravel中編寫一個查詢來檢索特定用戶查看的所有帖子。 user_id和post_id保存在名爲WatchHistory的表中。 SELECT *
FROM Post
WHERE post_id = (
SELECT post_id
FROM WatchHistory
WHERE user_id = $user_id
);
我試過如下: $posts