/ Published in: SQL
URL: http://www.squarebits.com/blog/2006/11/generate_simple.html
You can generate a simple bar chart of the values by executing this command...
Expand |
Embed | Plain Text
SELECT Name, Value FROM Month; SELECT Name, REPEAT("#", Value/20.0+1) Graph FROM Month;
Comments
Subscribe to comments
You need to login to post a comment.

Great snippet. Thank you.