Select Count(*), V1.User_id
From
( Select a.store_id, a.user_id
From a,b
Where a.store_id=b.store_id
And miscellaneous conditions
Order By a.store_id -- added by me
) V1,
( Select a.store_id, a.user_id
From a,b
Where a.store_id=b.store_id
And miscellaneous conditions
Order By a.store_id -- added by me
) V2
Where V1.store_id=V2.store_id
Group by V1.user_id
Order by V1.user_id;
How to get URL of commentator
-
We sometimes get questions about how to get the web address/URL of a
commentator in our blog. Blogger.com has not provided any way to do that.
However, the...
7 years ago
No comments:
Post a Comment