English 中文(简体)
帮助编制正确的化学文摘社国际协会声明
原标题:Help with creating correct CASE statement

我有问题,说明如何在我 below的提问中作案陈述。 基本上,问询只是从电文中提取电流,即把发送的当前用户(喷洒)或发送的原始透镜(翻新)发送。 这为每个人提供了完美的选任书,但原版的投稿人除外,他们应当能够拿到与透镜有关的所有信息。

Basically I need to add the SQL equivalent of the following statement:

WHERE messages_threads.id = $threadid
     if($userid == messages_threads.senderid) {
        // Don t add an AND clause
     } else {
        // Add the following AND clause
        AND (messages_messages.senderid = $userid OR messages_messages.senderid = messages_threads.senderid)
     }

Here s the query I m currently using:

SELECT messages_messages.id, messages_messages.senderid, username AS sendername, pictures.url AS picture, body, UNIX_TIMESTAMP(time) AS unixtimestamp
        FROM messages_messages
        JOIN messages_threads ON messages_threads.id = messages_messages.threadid
        JOIN users ON messages_messages.senderid = users.id
        LEFT JOIN pictures ON messages_messages.senderid = pictures.userid AND pictures.profile = 1
        WHERE messages_threads.id = $threadid
        AND (messages_messages.senderid = $userid OR messages_messages.senderid = messages_threads.senderid)
        ORDER BY time ASC
最佳回答

声明可转换成附和或:

WHERE messages_threads.id = $threadid AND 
    ($userid=messages_threads.senderid OR                       
        (messages_messages.senderid = $userid OR 
         messages_messages.senderid = messages_threads.senderid))

如果$userid=messages_threads.senderid 即整个<代码>或 条款是真实的,因此没有任何东西可以检查。 如果是假的,则对条款的其余部分进行检查。

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签