I can get pair of user_id - url
from url_like
table.
The only two columns are, as mentioned, user_id, url
.
I tried to get get date of 'liking' the URL by many ways, by connecting multiple tables, but no luck.
One of many examples might be
SELECT url, id, type, site FROM object_url WHERE url IN ( SELECT url FROM url_like WHERE user_id = {$target} ) LIMIT 1000",
Is there any way how to get date/timestamp of when user liked particular URL?
As said I even tried impossible...