SELECT * FROM table1, table2 WHERE table1.user_id = table2.id AND table1.content = news AND table1.content_id = 1
that wont work. cant u have two "AND" in a sql statement??
//Tomek
|
|
SELECT * FROM table1, table2 WHERE table1.user_id = table2.id AND table1.content = news AND table1.content_id = 1 that wont work. cant u have two "AND" in a sql statement?? //Tomek |
||||||||||
|
|
|
First let's start with getting rid of that old-style join so that the join and where clauses are clearly separated to make understanding much easier.
Now let's discuss what the problem might be. First what error are you receiving as this could be perfectly acceptable syntax? Could the problem be that you have not noted which table news is to come from? If it is in both tables you could be getting an error there. If news is meant to be the value of the column you would want it to be 'news' instead of news. It could also simply be that no records meet your conditions. Further it is a bad practice to ever use select * and it should never be used in a join as you are returning at least one field twice and that is wasteful of both database and network resources. Always specify only the columns you need. This wastes lots of resources every day when lazy programmers do this in every query. |
||
|
|
|
|
I liked cmartin's response. Also, you can use more than one AND, if needed. |
||
|
|
|
|
let me rewrite that for you with a JOIN statement since it is not 1995 anymore, you also need quotes around news
|
||
|
|
|
|
You can most definitely have a lot more than just 2 AND statements in a SQL query - any database that really support any of the SQL-xx standards will support this... Marc |
||
|
|
|
|
|
||
|
|
|
|
you probably want to quote 'news' as a string... You also probably want to use an inner join instead (much more efficient)
|
|||
|
|