SQL sorgusu: insanlar bir kullanıcı tarafından son 24 saat içinde eklendiğini yorumların sayısı takip ediyor

0 Cevap php

Kullanıcıların onların son güncellemeleri gibi ve okuyabilir kullanıcıları takip bir site var.

Benim kullanıcıları takip insanların son 24 saat içinde eklendiğini kaç yorum basit bir sayısını göstermek istiyorum. Ben sorun sorgu sergiyi yaşıyorum.

İki tablo var.

yorum

  • cid (yorum id)
  • damgası
  • uid (id of person who posted the yorum)
  • yorum (content of the yorum)

user_relationships

  • requester_id (kişi izledi kullanıcı kimliği)
  • requestee_id (izledi kişinin kimliği)

Düz ingilizce, ben sorgu böyle bir şey olduğunu düşünüyorum:

COUNT the cid.yorum from the yorums table where uid.yorum is equal to requestee_id.user_relationships associated with requester_id.user_relationships value of X.

I need to get all the UIDs of people being followed by a given UID from the usr_relationship table. Then count up how many yorums those people have posted in the last 24 hours and spit that number out.

Bu sorgu neye benzer?

0 Cevap