Hello All,
I have a requirement to count the number of articles CREATED by each user along with the date of article creation.
Please could some let me know how this can be done. I have default Database which comes with Confluenece.
Thanks
Dilpreet
Hi,
In MySQL you could use something like this:
select creator,date_format(CREATIONDATE,'%Y-%m-%d'),count(*) from CONTENT where prevver is null and creator is not null group by creator,date_format(CREATIONDATE,'%Y-%m-%d') order by creator,date_format(CREATIONDATE,'%Y-%m-%d')
Cheers,
Peter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.