15.04.2015, 14:28
Quote:
Tip to make INSERT query short is that while creating table don't forget to set default value of the column so that you don't need to insert that value with the query. For example if you set default of Admin money and score to 0 then you have to just use name password and ip in insert query and rest will be set to 0 by default.
The tip to make UPDATE query shorter is: |
Thanks alot mate.