MySQL helpful knowledge
I recently worked with another developer to convert a lot of MSSQL stored procedures into PHP/MySQL functions. Along the way I learned a bunch of new things which I figured would be helpful to you. The MSSQL “ISNULL(expr1,expr2)” equivalent in MySQL is “IFNULL()”. The MSSQL “TOP” keyword (to limit returns returned) equivalent in MySQL is [...]