Jump to content

fenway

Staff Alumni
  • Posts

    16,168
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by fenway

  1. What do you have so far?
  2. fenway

    Orders

    PHPMyAdmin can help you make tables quite easily.
  3. Perhaps posting the query would help.
  4. You're talking about storing hierarchical data... there many resources available, including some in the stickies.
  5. Yes, you'll have to store the time of the last download.
  6. Just remember mysql will use the full 255 for any group by or sorting/ordering operations performed on the column, so performance suffers if the value is set too high.
  7. Optimization without specific queries is impossible.
  8. Assuming proper index usage.
  9. MD5 is not encryption -- it's a one-way hash function. And if you're asking how to use mysql from flash, this isn't the right place.
  10. You can't do "second to last" -- but you can do second -- so just flip the order clause around.
  11. Well, from the CLI, you can specify how you want your output to be show -- either with \G or with pager.
  12. You may be getting inconsistent data across tables.
  13. What makes you think this is possible?
  14. That's basically it... did you try it?
  15. Or, run a sanitize script that converts these magic characters -- which often crop up when people C&P from Word -- into regular, ASCII characters.
  16. Move the check for TTL > 3 to a HAVING clause -- the result isn't available until "after" the query runs.
  17. Well, a table structure would help.
  18. Depends if you're using strict mode or not.
  19. Well, mysql goes from left-to-right, so you should be ok.
  20. MySQL doesn't "display" anything related to cells... what do you mean?
  21. No, you shouldn't use HAVING... and the difference between COUNT(*) and COUNT(col) only has to do with NULL values.
  22. You need group_concat().
  23. Sounds like you just need a COUNT and a GROUP BY.
  24. FYI, MySQL has no problem storing partial dates.
  25. I'm not sure I follow... did you try adding the where clause directly?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.