Re: ask syntax sql to get length of field

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Mariya Yuniarti <mariya_yuniarti(at)yahoo(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: ask syntax sql to get length of field
Date: 2006-04-20 15:23:48
Message-ID: 20060420152348.GA11024@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thu, Apr 20, 2006 at 00:37:08 -0700,
Mariya Yuniarti <mariya_yuniarti(at)yahoo(dot)com> wrote:
> Here Question :
>
> I have table A with structure :
>
> Number Character(20),
> Description Character(50)
>
> I want to get length of field Number (20)
>
> What is syntax sql to get length of field ?

Are you looking to get 20 or the length of a particular string in that column?
If you are looking for the maximum length (20), that should be available in
the catalogs. For the string length you can look in the string functions
section of the document. I am not sure whether or not trailing spaces are
counted in char columns. varchar makes more sense if you actually have
variable length strings.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Markus Schaber 2006-04-20 15:36:41 Re: Field length ??
Previous Message Frank Bax 2006-04-20 15:21:27 Re: Field length ??