What are the must-know MYSQL functions (like IF etc..,) which every web developer should know?
feedback
|
closed as not constructive by Sjoerd, Thomas Owens, ircmaxell, Scott Saunders, Your Common Sense Aug 27 '10 at 13:59
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
My favorite: It allows me to bypass heavy PHP code to fetch data from one table, manipulate it and insert into another. | |||
|
feedback
|
|
i'd say:
when i have querys that i use all the time, but it's not a function =P | |||||||
feedback
|
|
Triggers and stored procedures offer much automation that involve only the SQL engine and this will significantly reduce the Web server's load and PHP code involved in data housekeeping. | |||
|
feedback
|
|
My personal favorite is "insert... on duplicate key update..." ;-) Every string functions: concat, concat_ws, ... now(). GROUP BY functions: sum(), max(), count() + the wonderful group_concat() JOIN clauses and VIEWs if you you are planning complex requests. Well, in fact, the more you know MySQL (I mean, everything), the best. | |||
|
feedback
|
|
My favorite:
Taking care of data integrity with foreign keys will reduce your code base a lot. Not mentionign MySQL is better at this than PHP. | |||
|
feedback
|
|
Some features that come to my mind:
| ||||
|
feedback
|