In this SQL statement, notice the color of the word "having" versus the words "select", "from", "where", and "group by"

select
  cu.name
 ,cu.email
 ,count(*) as books_purchased
from
  customers cu
 ,purchases pu
where cu.customerid = pu.customerid
  and pu.year = 2003
group by
  cu.name
 ,cu.email
having
  count(*) > 1
share|improve this question
1  
Yeah, I think you're right. – Jonathan Sampson Sep 3 '09 at 19:35

3 Answers

up vote 1 down vote accepted

We just deployed the latest trunk of prettify.js ; revision 83

http://code.google.com/p/google-code-prettify/source/browse/trunk/src/prettify.js

share|improve this answer

Reported it to google. Issue #91.


I'm going to have to retract the report. The current version there handles "having" correctly. Investigating more now...

share|improve this answer
Fix should be apparent at code.google.com/p/google-code-prettify/source/browse/trunk/src/… – Mike Samuel Dec 10 '09 at 18:23

That sounds more like a potential bug with the Prettify, which is a separate project and not associated with StackOverflow or any of the sites.

share|improve this answer
Didn't they reverse engineer the Prettify control and customize it for the site? Or was that the WMD editor...? – JosephStyons Sep 3 '09 at 19:39
I'm not aware personally of either...but I remember previous questions concerning the code formatting were pointed towards Prettify. – TheTXI Sep 3 '09 at 19:42
4  
That was the WMD editor. – Thomas Owens Sep 3 '09 at 19:42
Right you are.... search for the words "reverse engineer" on this page: stackoverflow.fogbugz.com/default.asp?W29022 – JosephStyons Sep 3 '09 at 20:14

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged