Jump to content

fenway

Staff Alumni
  • Posts

    16,168
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by fenway

  1. Well, you're trying to make the same view over and over again.
  2. Have you consulted the refman page on fulltext indexing?
  3. I don't know how many times you've posted the exact same question. LOCKED.
  4. Show exactly the command you're using.
  5. Show a table structure.
  6. It is so very much NOT an alternative -- they mean completely different things unless there's only a single field.
  7. Seriously? You just posted about 20K of code. Please identify the 15-line code snippet that's not working.
  8. Sounds like you need a jon.
  9. Yeah, I see that now... obviously, you can tell that csc.header can only be one value at a time! You'll need to join in the header table once per header row entry value with the name in the on clause -- let me know if I've lost you.
  10. That's a php issue, now, isn't it?
  11. Just use a DATETIME field.
  12. And before/after each query would be waste of time.
  13. Sounds lke you're looking for an exact match...?
  14. You can't... one insert req'd per table.
  15. Don't mark a thread "solved" without posting the solution.
  16. Read the sticky on hierarchical data -- it's not trivial to recurse it the way you've stored it.
  17. It's like no one's ever heard of code tags.... yeesh.
  18. Looks fine, but echo the query.
  19. Until replication becomes a factor.
  20. Then use the last query and switch 7 to 60.
  21. Yikes... why do you have 5 left joins for the same base query?
  22. Not sure if you can use env vars from linux like that... did you try using --tmpdir? But 127 is still record-table is crashed. Bah! Did you say earlier that you could run some select statements at some point?
  23. Try: select o.offerid , o.name, o.incent, o.type, o.reporting, o.category , IFNULL( e.pay_value, o.pay_value ) AS pay_value from offers as o left join exceptions as e using (pay_value,offerid) where o.status = 'On' order by o.pay_value $orderx LIMIT $from, $max_results
  24. What not try the simple case to prove it? Use a basic string on both server.
  25. Strictly speaking, whenever you CONCAT, I would probably recommend CONCAT_WS(), and use a separator that is unlikely to appear in your data. Otherwise, if you have teams like: team1 = me team2 = another and team1 = mean team2 = other then CONCAT() with return the same string for both! Case insensitivity can also wreak havoc. I would recommend: SELECT team1, team2, COUNT(*) AS count FROM matchups GROUP BY CONCAT_WS( '~',team1,team2) Just to be safe. You'll get burned eventually.
×
×
  • 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.