Oracle WHERE Clause
The Oracle WHERE clause allows you to filter the results from an SQL statement.
This Oracle WHERE clause chooses which rows to filter in result from an SQL statement
For Update SQL:
Only rows that meet the search condition are updated. If you omit the search condition, all rows in the table are updated.
For Oracle SELECT INTO SQL:
Only rows that meet the search condition are selected. If you omit the search condition, all rows in the table are selected.
For INSERT INTO Oracle SQL:
Only rows that meet the search condition are inserted. If you omit the search condition, all rows in the table are inserted.
For DELETE SQL:
Only rows that meet the search condition are deleted. If you omit the search condition, all rows in the table are deleted.
|