Problem with Attribute. - Mailing list pgsql-sql

From Rado Petrik
Subject Problem with Attribute.
Date
Msg-id 1052212666.551.29.camel@caj
Whole thread Raw
Responses Re: Problem with Attribute.  ("Victor Yegorov" <viy@nordlb.lv>)
Re: Problem with Attribute.  (Achilleus Mantzios <achill@matrix.gatewaynet.com>)
List pgsql-sql
Hi , 

I have table picture_path.


1. Step one. Write query to psql. 

power2=# select *  from picture_path ;

retur: 
id_path | p_path | count  
---------+--------+--------
(0 rows)


2. Step two. Write query.

power2=# select count from picture_path;

return: 

ERROR:  Attribute 'count' not found
power2=# 

Why ? 


This is dump table picture_path.

CREATE TABLE "picture_path" (  "id_path" int4 DEFAULT nextval('"picture_path_id_path_seq"'::text)
NOT NULL,  "p_path" varchar(20) NOT NULL,  "count " int2 NOT NULL
);

Thanks. 
- 
Rado Petrik <r.p@szm.sk>



pgsql-sql by date:

Previous
From: "Marco Roda"
Date:
Subject: Re: UNICODE and SQL
Next
From: "Victor Yegorov"
Date:
Subject: Re: Problem with Attribute.