Data Types
Data Types
NUMBER
VARCHAR2
Text documents
Large textual descriptions
XML documents
JSON data
BLOB 8GB (Binary Large Object) is a data type used to store images, audio, video,
documents, or any other binary data (0,1).
DUAL:
NULL:
Null is a unassigned value or unknown value or undefined value.
0+Null Null
0-Null Null
0*Null Null
0/Null Null
Null is always greater than any number because in ascending order Null comes last
and in decending order it comes first or it is maximum in ascending order & minimum
in decending order.
IN CONDITION
(i). IN condition is used to filter rows from a result set based on specified list
of values.
(ii).It is often used in the WHERE clause
department_id = 10,20,30
department_id IN (10,20,30)
department_id NOT IN (10,20,30)
(i). BETWEEN operator is used to filter rows from a result set based on specified
range of values.
(ii).It is often used in the WHERE clause