TAG

Mysql

SQL NOT NULL Constraint Explained [Easy Examples]

The SQL NOT NULL constraint on an attribute or column specifies that the NULL value is not allowed for that attribute, in other word, the constraint in SQL …

By falgunithakker · 6 min read · SQL

SQL ISNULL Function Explained [Easy Examples]

SQL ISNULL is Advanced SQL function which takes two parameters first one is expression or column name and second is value which is return if expression or …

By falgunithakker · 8 min read · SQL

SQL Time Functions Explained [Easy Examples]

SQL Time functions can have different versions in different Database Management Systems like MySQL, ORACLE, and MS SQL Server. NOW(), CURDATE(), CURRENT_TIME(), …

By admin · 18 min read · SQL

SQL Left Join Multiple Tables [Easy Examples]

Examples to use SQL LEFT JOIN Multiple tables. In SQL Left join, if a specific row is present in the left table but not in the right, the result will include …

By falgunithakker · 8 min read · SQL