Re: Simple sql question

From: "Tore Lukashaugen" <tore(at)lukashaugen(dot)freeserve(dot)co(dot)uk>
To: <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Simple sql question
Date: 2007-10-03 18:56:57
Message-ID: 7E99B849756344CC8DE982886CBC681E@ToreServer
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Indeed it does, thanks very much guys!

----- Original Message -----
From: "Wright, George" <George(dot)Wright(at)infimatic(dot)com>
To: "Tore Lukashaugen" <tore(at)lukashaugen(dot)freeserve(dot)co(dot)uk>;
<pgsql-novice(at)postgresql(dot)org>
Sent: Wednesday, October 03, 2007 7:35 PM
Subject: Re: [NOVICE] Simple sql question

select cast (col1 as float) / cast (col2 as float) from test;

gives 0.5

-----Original Message-----
From: pgsql-novice-owner(at)postgresql(dot)org
[mailto:pgsql-novice-owner(at)postgresql(dot)org] On Behalf Of Tore Lukashaugen
Sent: Wednesday, October 03, 2007 2:02 PM
To: pgsql-novice(at)postgresql(dot)org
Subject: [NOVICE] Simple sql question

Hello,

I am new to Postgres and have an embarassingly simple question. I am
running
v8.2 on Windows Vista although I don't think that has any bearing on the

answer.

create table test (col1 int, col2 int)
insert into test values (1,2);
select col1/col2 from test....yields 0 not 0.5 - why?

Presumably this is because both col1 and col2 are ints and the output
needs
to be casted somehow? Or is it because PGAdmin's SQL interface does not
by
default show the decimal places of output?

Appreciate your help.

Tore

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
message can get through to the mailing list cleanly

---------------------------(end of broadcast)---------------------------
TIP 7: You can help support the PostgreSQL project by donating at

http://www.postgresql.org/about/donate

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Lonni J Friedman 2007-10-05 22:47:45 timestamp interval issue
Previous Message Tom Lane 2007-10-03 18:44:39 Re: Simple sql question