MySQL Table structure to produce reports - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T20:24:45Z http://stackoverflow.com/feeds/question/325414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/325414/mysql-table-structure-to-produce-reports 0 MySQL Table structure to produce reports Lisa 2008-11-28T10:04:45Z 2008-11-28T13:57:52Z <p>To follow on from my question yesterday....</p> <p><a href="http://stackoverflow.com/questions/323842/mysql-table-design-for-a-questionnaire">http://stackoverflow.com/questions/323842/mysql-table-design-for-a-questionnaire</a></p> <p>I sat down with my boss yesterday afternoon to run through how I was proposing to design the database. However, now I am more confused than ever.</p> <p>He has been using Access for many years, and has questioned whether I will be able to produce reports from only using one column for the answer (ENUM). He feels from his experience with Access that each possible response (i.e. Very Satisfied, Fairly Satified, Fairly Unsatisfied, Very Unsatisfied), should have it's own column and numerical value(i.e. 100, 66.6, 33.3, 0).</p> <p>This is so that the database can produce reports that show the average satisfaction nationally and for each retailer individually.</p> <p>I would really appreciate some guidence, as I really don't want to get this wrong?</p> <p>Thank you</p> http://stackoverflow.com/questions/325414/mysql-table-structure-to-produce-reports/325458#325458 1 Answer by J.D. Fitz.Gerald for MySQL Table structure to produce reports J.D. Fitz.Gerald 2008-11-28T10:38:06Z 2008-11-28T10:38:06Z <p>In this case I wouldn't go for an enum, I'd go for a "score" column. So the columns might be:</p> <pre><code>userid, questionid, score 1,1,4 1,2,4 1,3,3 2,1,1 2,2,4 ... </code></pre> <p>1 being very unsatisfied and 4 being very satisfied.</p> <p>Then a query like:</p> <pre><code>select 25*avg(score) from Blah </code></pre> <p>will give you your overall percentage.</p> <pre><code>select 25*avg(score), questionid from Blah group by questionid </code></pre> <p>will give you a % per question.</p> <p>Access isn't really a database, so don't listen to your boss ;)</p> http://stackoverflow.com/questions/325414/mysql-table-structure-to-produce-reports/325687#325687 1 Answer by genehack for MySQL Table structure to produce reports genehack 2008-11-28T12:36:33Z 2008-11-28T12:36:33Z <p>JD is right, given the need to do score averaging, the INT column is the way to go.</p> <p>As for your boss, well, he's wrong. 8^) Perhaps the best way to convince him is to demonstrate how you'd do the report generation with the design we're talking about: write a little script to generate some fake data (i.e., just randomly generate a lot of values in the 1..4 range) and then use some SQL (JD has some good starting points) to generate some Q&amp;D reports. </p> http://stackoverflow.com/questions/325414/mysql-table-structure-to-produce-reports/325821#325821 0 Answer by Lisa for MySQL Table structure to produce reports Lisa 2008-11-28T13:57:52Z 2008-11-28T13:57:52Z <p>Just in case anyone else has this problem; I have also found a tutorial which is quite useful. <a href="http://www.roughguidetophp.com/generating-reports-using-mysqls-aggregate-functions-sum-max-min-and-more/" rel="nofollow">http://www.roughguidetophp.com/generating-reports-using-mysqls-aggregate-functions-sum-max-min-and-more/</a></p> <p>It clarifies what JD and Genehack have said.</p>