BLOG

Latest Articles

Python list extend() method [Practical Examples]

In Python, the list is an ordered and mutable container. The extend() method is used to add the items from other iterable to the existing list. In other words, …

By admin · 6 min read · Python

SQL RIGHT OUTER JOIN Explained [Practical Examples]

SQL RIGHT OUTER JOIN is one type of SQL OUTER JOIN used to retrieve all records from the right table of the join and match records from the left table side of …

By falgunithakker · 7 min read · SQL