hello Trollix hello all here,
i have got some troubles in a DB-request: Want to get some useful datas out of the db.
Therefore i perform some request for a XForum: This one runs all right and gives some valid and useful output
Code:
SELECT *
FROM `nuke_XForum_threads`
WHERE (
`fid` = 5
) AND (
`replies` = 4) LIMIT 0 , 4000
the followning statement runs all right and gives some valid and useful output
too
Code:
SELECT *
FROM `nuke_XForum_threads`
WHERE (
`fid` = 5
) AND (
`author` = 51) LIMIT 0 , 4000
the last one - below here - does not run with a valid result - WHY
Code:
SELECT *
FROM `nuke_XForum_threads`
WHERE (
`fid` = 5
) AND (
`author` = Anonym) LIMIT 0 , 4000
well the result is bullshit. What is wrong here?
why does the statement not work the statement- does not run with a valid result - WHY?
any advice `? many many thanks in advance!!
sailor |