Re: [SQL] select question

From: Chris Johnson <cmj(at)inline-design(dot)com>
To: STMIK Stikubank <stmiknet(at)mail(dot)idola(dot)net(dot)id_nospam>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] select question
Date: 1998-07-28 15:56:07
Message-ID: Pine.LNX.4.00.9807281153320.411-100000@boreus.bedfo.ma.tiac.net
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, 28 Jul 1998, STMIK Stikubank wrote:

> Hi all,
>
> I have a table (mhs) which fills as below :
>
> nim
> --------
> 94.31.0001
> 94.31.0002
> 95.31.0003
> 95.51.0004
>
> then how can I get rows which meet with '94.31.xxxx' (where x = don't
> care)? I've already try :
>
> select * from mhs where nim likes '94.31';

select * from mhs where nim like '94.31.%';

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Roderick A. Anderson 1998-07-28 16:25:11 Re: [SQL] select question
Previous Message STMIK Stikubank 1998-07-28 15:48:55 select question