As my response pertains to MYSQL pls find the small correction to the previous posters post:
Quote:
|
Originally Posted by r937
also, you cannot use the equals sign in a SELECT either
|
Sorry but this is not true, you can indeed use an '=' in a select statement
E.G.
Select column1= '10' from table;
will result in a boolean interpretation of column 1 values against '10', in other words, the result set will be 0 (for a no match) or 1 (for a match).