VARCHAR2(size) : Variable-length character data size : minimum 1 and maximum 4000 CHAR(size) : Fixed-length character data size : minimum 1 and maximum 2000 (slowest data type) NUMBER(p,s) : Variable-length numeric data p : precision , s: scale The precision is the total number of decimal digits, and the scale is the number of digits to the right fo the decimal point; the precision can range fro..