Posted by Erland Sommarskog on 02/13/07 22:42
kirke (hinkyeol@gmail.com) writes:
> Hi I wanna put string in query "where" part.
>
> For example,
>
> $sql="select VEHICLE
> FROM database
> WHERE MECHANIC =BRIAN
> ";
>
> like above, "mechanic" column is filled with strings. Then how can I
> write "where" part?
> Above query does not work.
Does this:
$sql="select VEHICLE FROM database WHERE MECHANIC = 'BRIAN';
Or what do you mean with "filled with strings"?
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
[Back to original message]
|