"Anatoly K. Lasareff" wrote:
> >>>>> "JEP" == Javier E Polo <jpolo@luna.uniandes.edu.co> writes:
>
> JEP> I'm want to create a table with data types float or doubles. How can I declare them
> JEP> ?
>
> JEP> Create table rrrrrrr (
> JEP> tip1 ????(float)???,
> JEP> );
>
> Pehaps
>
> create table rrr (
> a float
> );
>
> What is the problem?
>
> --
> Anatoly K. Lasareff Email: tolik@icomm.ru
> Senior programmer
try:
create table rrr (
a float4
);
Regards,
George Kousi