You have an error in your SQL syntax near '' at line 1 - Mailing list pgsql-sql

From Ari Nepon
Subject You have an error in your SQL syntax near '' at line 1
Date
Msg-id JMEEKPBGBOBMKNANAGILMEMBCDAA.anepon@verveinternet.com
Whole thread Raw
Responses Re: You have an error in your SQL syntax near '' at line 1  ("Josh Berkus" <josh@agliodbs.com>)
List pgsql-sql
Hi,

I keep getting this error "You have an error in your SQL syntax near '' at
line 1" when I try to run the below query. Does anyone know what I'm
missing? Maybe some of the variables need to be in single or double qoutes?
I tried a bunch of things, but no change.

tbl_all holds the foreign keys and some columns of non-relational data. the
other tbl_somethinghere tables hold two columns, the primary key and a name.
$columns_to_select ="tbl_users.username_field, tbl_client.name,
tbl_project.project_name, tbl_task.task_name, tbl_all.description,
tbl_all.hours, tbl_all.date_field";$left_join ="LEFT JOIN tbl_users ON tbl_all.employee_ID =
tbl_users.username_field LEFT JOIN tbl_client ON
tbl_all.client_ID=tbl_client.name LEFT JOIN tbl_project ON
tbl_all.project_ID=tbl_project.project_name";$left_join2="LEFT JOIN tbl_task ON
tbl_all.task_ID=tbl_task.task_name";$where="WHEREtbl_all.client_ID = $clients";$all_query ="SELECT $columns_to_select
FROMtbl_all $left_join $left_join2
 
$where";

Thanks,

Ari

~~~~~~~~~~~~~~~~~~~~~~~~~
Ari Nepon
MRB Communications
4520 Wilde Street, Ste. 2
Philadelphia, PA 19127
p: 215.508.4920
f: 215.508.4590
http://www.mrbcomm.com

-----------------------------------------------------------------------
Sign up for our email list and receive free information about
topics of interest to nonprofit communications, marketing, and
community building professionals. Free resources, articles, tips.
Go to http://www.mrbcomm.com and use the Mailing List form.
-----------------------------------------------------------------------



pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: How can we match a condition among 2 diff. tables?
Next
From: "Richard Huxton"
Date:
Subject: Re: Date Validation?