Naming Convention : A naming convention is a convention for naming things: Please find below the table for naming conventions: Naming Convention Format Example Camel Case camelCase šŖaBcD Kebab Case kebab-case š¢a-b-c-d Snake Case snake_case ša_b_c_d Pascal Case PascalCase š§āš¦³AbCd Flat Case flatcase šabcd Upper Flat Case UPPERFLATCASE ABCD Screaming Snake Case SCREAMING_SNAKE_CASE šA_B_C_D Camel Snake Case camel_Snake_Case šŖšab_Cd Pascal Snake Case Pascal_Snake_Case Ab_Cd Train Case Train-Case šAb-Cd Cobol Case COBOL-CASE š¢AB-CD
NVL: The NVL function allows you to replace null values with a default value. Simple explanation: if( first parameter's value==null ) then return second parameter value if( first parameter's value!=null) then return first parameter as is Example: nvl("xyz","")---->return xyz nvl(null,'xyz') ------------>return xyz