Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • EXISTS Operator

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 460
    Comment on it

    EXISTS Operator:

    Exists operator is a special type of operator which is used in a subquery. It is used to check whether a subquery returns something or not. If a subquery returns some row then outer query get executed otherwise the whole query will return nothing.

    Syntax:

    1. SELECT columnname(s)
    2. FROM tablename
    3. WHERE EXISTS
    4. (SELECT *
    5. FROM tablename2"
    6. WHERE "condition");

    We can use EXISTS operator with DELETE , UPDATE OR DELETE statements other than SELECT statement.

    Example:

    1. SELECT *
    2. FROM Employee
    3. WHERE EXISTS (SELECT *
    4. FROM Payroll
    5. WHERE Employee.Emp_id = Payroll.P_id);

    This query will return rows only if the inner query will get executed successfully (return some data).

     

    Example of Exists operator with Delete query:

    1. DELETE FROM Employee WHERE
    2. EXISTS (SELECT * FROM Payroll WHERE
    3. Payroll.p_id = Employee.Emp_id);

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: