> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Hi all,
> is it a paradox or not have table with no column but with rows in in
> ( I mean, we want it ) ?
>
> Here a way to obtain it.
It's even easier than that actually;
create table test();
insert into test default values;
insert into test default values;
insert into test default values;
select * from test;
--
(3 rows)
I think it's kind of cool.
Merlin