Manideep Paduchuri

[ Intern at Padhle.com ] Manideep is Pro Blogger , Web Developer and  Interested in Data Analytics. He believes in continuous learning and can interact with him on Quora where he blogs on Shopify technology and Computer Science Topics.

Triggers in PL – SQL Free SQL Tutorials and Online Training

Triggers are a series of PL/SQL statements attached to a  database table that executes whenever a triggering event (select, update, insert, delete) occurs. Unlike stored procedures and functions, they not explicitly called, but they are activated when a triggering event occurs. A trigger is nothing but a PL/SQL code executed automatically in response to a …

Triggers in PL – SQL Free SQL Tutorials and Online Training Read More »

Introduction to Joins in SQL – Free SQL Tutorials

Joins are useful in querying data from two or more tables. Joins are used to fetch the data from two tables based on some specific condition.There are following types of Joins: Equijoin Non-equijoin Outer join Self join Syntax for Join: Select table1.column, table2.column from table1, table2 where table1.column1 = table2.column2;   Here, where clause is …

Introduction to Joins in SQL – Free SQL Tutorials Read More »