MySQL Coding Conventions
Here are some useful tips to maintain the mysql and SQL coding standard. Always write queries in Capital Letters. Quote around table names and column names by using back tick (`) operator. Always use table names and column names in small letters. Use underscore (_) for table names and column names. Always fetch required fields…