What are the must-know MYSQL functions (like IF etc..,) which every web developer should know?

link|improve this question

4  
The title was more interesting than the actual question :) – fabrik Aug 27 '10 at 12:46
Question and the title actually means the same here, I think. – hey Aug 27 '10 at 12:54
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.

6 Answers

up vote 6 down vote accepted

My favorite:

INSERT ... SELECT

It allows me to bypass heavy PHP code to fetch data from one table, manipulate it and insert into another.

link|improve this answer
feedback

i'd say:

CREATE VIEW .. AS SELECT

when i have querys that i use all the time, but it's not a function =P

link|improve this answer
1  
This greatly removes dependence on complex ORMs. – stillstanding Aug 27 '10 at 12:59
@stillstanding - agree wholeheartedly – f00 Aug 27 '10 at 13:36
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.

link|improve this answer
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.

link|improve this answer
feedback

My favorite:

alter table child add Foreign key (parent_id) references parent(id);

Taking care of data integrity with foreign keys will reduce your code base a lot. Not mentionign MySQL is better at this than PHP.

link|improve this answer
feedback

Some features that come to my mind:

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.