| From: | Jason Earl <jason(dot)earl(at)simplot(dot)com> |
|---|---|
| To: | "Brian Johnson" <bjohnson(at)jecinc(dot)on(dot)ca> |
| Cc: | <pgsql-novice(at)postgresql(dot)org> |
| Subject: | Re: Searching for all records but integer field is causing |
| Date: | 2002-03-25 21:37:08 |
| Message-ID: | 87sn6oe3cr.fsf@npa01zz001.simplot.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-novice |
I think that what you want is:
SELECT * FROM phpgw_categories WHERE cat_appname = 'notes';
Jason
"Brian Johnson" <bjohnson(at)jecinc(dot)on(dot)ca> writes:
> How do I do a select query for all records?
>
> SELECT * FROM phpgw_categories WHERE cat_name = ? AND cat_owner = ? AND
> cat_appname = 'notes'
>
> cat_name = '*' works but cat_owner = '*' gives me an atoi error.
>
> I was hoping to reuse the code segment of SQL that gets called repeatedly
> for slightly different purposes but I can't get this to work
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Masakazu Ichimura | 2002-03-26 01:15:10 | Return value of function |
| Previous Message | Brian Johnson | 2002-03-25 19:24:12 | Searching for all records but integer field is causing problems |