16.09.2012, 11:14
Hello, I've been scripting in MySQL since 3 days. I've learnt the basic things, but now I want to expertise my MySQL coding skills. Since, MySQL is a great saving system, I am finding ways to expertise it. What I want to know is what silly mistakes people makes that aren't to be made. So, basically can anyone give me a guide through how can I optimise my MySQL codes. How to and where to properly use some functions like -
and another things like -
should we really do things like this -
OR
Where to use [``] and where not to ?
Maybe a deep knowledge and guide can help me.
Thank you.
Obediently,
Ronaldo_raul
pawn Код:
mysql_free_results () ;
should we really do things like this -
pawn Код:
mysql_query ( "UPDATE `user` SET a=1 , b=2 WHERE `Name` = '%s'" ) ;
pawn Код:
mysql_query ( "UPDATE user SET a=1 , b=2 WHERE Name = '%s'" ) ;
Where to use [``] and where not to ?
Maybe a deep knowledge and guide can help me.
Thank you.
Obediently,
Ronaldo_raul