Different SQL data types
In this topic, you will learn about, What are the different SQL data types? The major data types in PL/SQL include NUMBER, CHAR, VARCHAR2, DATE, and TIMESTAMP. Numeric variables: To define a numeric variable, the programmer appends the variable type NUMBER to the name definition. To Syntax: variable_name number([P,S]) := 0; Character variables: To define …