Category: Clauses/Conditions

  • AND Operator

    The SQLite AND Operator is generally used with SELECT, UPDATE and DELETE statement to combine multiple conditions. It is a conjunctive operator which makes multiple comparisons with different operators in the same SQLite statement. It is always used with WHERE Clause. Syntax: Example: We have a table named ‘STUDENT’ having following data: Select all students…

  • WHERE Clause

    The SQLite WHERE clause is generally used with SELECT, UPDATE and DELETE statement to specify a condition while you fetch the data from one table or multiple tables. If the condition is satisfied or true, it returns specific value from the table. You would use WHERE clause to filter the records and fetching only necessary…