compare table names - Mailing list pgsql-sql

From Tony Capobianco
Subject compare table names
Date
Msg-id 1326125538.1983.12.camel@tony1.localdomain
Whole thread Raw
Responses Re: compare table names  (Adrian Klaver <adrian.klaver@gmail.com>)
Re: compare table names  (Adrian Klaver <adrian.klaver@gmail.com>)
List pgsql-sql
I have these 3 tables:
    tablename      
--------------------tmp_staging0109tmp_staging1229tmp_staging0108


I'd like this query:

select tablename from pg_tables where tablename like 'tmp_staging%' and tablename < 'tmp_staging1230';

To return this result:
    tablename      
--------------------tmp_staging1229

However, I'm receiving:
    tablename      
--------------------tmp_staging0109tmp_staging1229tmp_staging0108

How can I write this correctly?

Thanks.
Tony



pgsql-sql by date:

Previous
From: "cc \"maco\" young"
Date:
Subject: notes on materialized views
Next
From: Adrian Klaver
Date:
Subject: Re: compare table names