Hi Pankaj,
There is no datatype FLOAT in Oracle ...you can implement the float using the NUMBER datatype in Oracle...the declaration is number(x,y)...where y is the precision and x is the total length inclusive of the precision...e.g. number(6,2) implies number of length 6 out of which 2 are reserved for the precision
|