close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Query with sub queries for forum flags work, but not entirely... can't figure out why

Thread began 6/19/2013 2:26 am by mrs | Last modified 6/19/2013 2:27 pm by mrs | 593 views | 4 replies |

mrs

Query with sub queries for forum flags work, but not entirely... can't figure out why

I'm hoping you can help! My forum has now got flags in place to indicate (a) which threads a user has posted in, and (b) which thread is new, or has new content based on the date the user last looked at the thread.

The first bit (a) works fine where a user is the original poster or a respondent then a tick appears next to the thread in the results list.

The second bit (b) works to a point, but not entirely as expected. So, to explain... I have a table called tbl_forumREADS that is collecting the info from a users viewings of a thread. If it's the first view, a record is created storing the User ID, the Thread ID and the date it was viewed, if it's a subsequent viewing of the thread, then the date of the record equal to the thread ID and the User ID is updated. This all works fine within the database. The user then has a visual flag before viewing a thread to let him know that it's new or has been updated which displays based on a show if the viewed date is less than the thread date. Sounds simple!

My issue is that if the user views a thread, it's recorded and the flag disappears, but if another user then enters a reply, the visual flag should reappear indicating that the thread has been updated, but the updated flag isn't showing.

Here's my select:


SELECT
EXISTS (SELECT * FROM tbl_forumPOSTS b WHERE fld_fTHREADID = tbl_forumPOSTS.fld_fID AND fld_fUSERID = ".$Uid.") UserRepliedToThread,
IF(tbl_forumPOSTS.fld_fUSERID = ".$Uid.", 1, 0) UserStartedThread,
(
SELECT fld_fREPLYDATE FROM tbl_forumPOSTS sP WHERE sP.fld_fTHREADID = tbl_forumPOSTS.fld_fID AND sP.fld_fUSERID = ".$Uid."
ORDER BY fld_fREPLYDATE DESC
LIMIT 1
) LastReadByUser,
(
SELECT fld_readsDATE FROM tbl_forumREADS fR WHERE fR.fld_readsTHREADID = tbl_forumPOSTS.fld_fID AND fR.fld_readsUSERID = ".$Uid."
ORDER BY fld_readsDATE DESC
LIMIT 1
) LastReadPost,
tbl_forumPOSTS.*,
`tbl_forumNAME`.`fld_fnNAME` AS tbl_forumNAME_fld_fnNAME, tbl_users.*
FROM tbl_forumPOSTS
JOIN tbl_forumNAME ON tbl_forumNAME.fld_fnID = tbl_forumPOSTS.fld_fFORUMID
JOIN tbl_users ON tbl_forumPOSTS.fld_fUSERID = tbl_users.UserID
WHERE fld_fTHREADID = 0
AND fld_fSHOW = 1
AND tbl_forumPOSTS.fld_fFORUMID = %s
ORDER BY fld_fREPLYDATE DESC


And here's my show if:

if (!$row_WADAtbl_forumPOSTS['LastReadPost'] > $row_WADAtbl_forumPOSTS['LastReadByUser']) {


What's wrong?

As a side note, the show if acts strange anyway. If I remove the NOT (!) and switch to LastReadByUser is less than LastReadPost, then flags only appear on those threads that have been read. I would have thought that this was exactly the same as the NOT statement I have in place.

Just want some extra eyes on this that might see something wrong!

Sign in to reply to this post

Jason ByrnesWebAssist

dates are strings.

< or > arre mathematical operators for Less Than or greater Than.

you cannot perform Greater than or less than comparisons using strings


you can use UNIX_TIMESTAMP() to convert the date to a timestamp



for example:
SELECT UNIX_TIMESTAMP(fld_readsDATE) FROM ....

Sign in to reply to this post

mrs

So, are you saying my MySQL query is wrong, or my show if statement?

SELECT indicates that it's my query, but I am only using the > in the show if... or is it both?

Thanks.

Sign in to reply to this post

Jason ByrnesWebAssist

your query is wrong


doesn't matter that the comparison is in the if statement, its still a string. the query needs to return a number for you do math operations in the if statement.

Sign in to reply to this post

mrs

Cool, thanks for the advice Jason, I have it working as expected now.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...