Re: [GENERAL] Float

George Kousi <george@albourne.com>

From: George Kousi <george@albourne.com>
To: "Anatoly K. Lasareff" <tolik@icomm.ru>
Cc: Javier E Polo <jpolo@luna.uniandes.edu.co>, PostgreSQL general mailinglist <pgsql-general@postgreSQL.org>
Date: 1998-11-10T14:31:46Z
Lists: pgsql-general
"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