Whats on your clip board??
Posted: Wed Oct 21, 2009 10:39 am
Pretty dead round here so Hit ctrl + V or right click and paste what you have on your windows desktop.
Here's mine, just some boring sql stuff
select name, count(*) as cf from (
select fid, tokens.eid, count(*) as c from
tokens
group by
eid, fid) as cl inner join ids on
cl.eid = ids.eid
group by ids.eid, ids.name
order by cf desc;
Here's mine, just some boring sql stuff
select name, count(*) as cf from (
select fid, tokens.eid, count(*) as c from
tokens
group by
eid, fid) as cl inner join ids on
cl.eid = ids.eid
group by ids.eid, ids.name
order by cf desc;