Re: Query Help...

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



----- Original Message -----
From: "NIPP, SCOTT V (SBCSI)" <sn4265@sbc.com>
To: <php-db@lists.php.net>
Sent: Monday, March 10, 2003 9:23 AM
Subject:  Query Help...


> I am having a lot of trouble with a query that works fine from a
> basic SQL command line, but fails in my web script.  Here is the
portion of
> code including the query:
>
> mysql_select_db($database, $Prod);
> $query_groups = "SELECT name FROM group";
> $groups = mysql_query($query_groups, $Prod) or die(mysql_error());
>
> Here is the error I am receiving:
>
> You have an error in your SQL syntax near '"group"' at line 1
>

Have you tried using backticks in your query? E.g.,

$query_groups = "SELECT name FROM `group`";

--
rob


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux