![]() |
SQL Query Acting Weird
https://vborg.vbsupport.ru/external/2008/01/48.jpg
It is weird, because I can call $username342342342342 just fine from a template, but if I change Code:
$userinfo31221213 = fetch_userinfo($Entries['Date']); Code:
$userinfo31221213 = fetch_userinfo($Entries['Author']); |
You should really perform a LEFT JOIN on the user table instead of a nested fetch_userinfo() call.
Why would you use $Entries['Date'] ... shouldn't it be $Entries['Author']. Also, I'm surprised your query even executes because 'Date' is a reserved MySQL keyword. Add this debug code to the end of your loop PHP Code:
|
Quote:
It should be Author, but for some reason it would only work if it was the last column in the table. How do I do a LEFT JOIN? |
[sql] SELECT contestv.ID, contestv.Contest, contestv.Author, contestv.Location, contestv.Date, user.*
FROM " . TABLE_PREFIX ."contestview AS contestv LEFT JOIN " . TABLE_PREFIX ."user AS user ON(user.username = contestv.Author) WHERE contestv.ID = " . intval($contestID) . " [/sql] That is the gist of a LEFT JOIN... Some other things: You should really use userid if you are currently using username...it is easier to index and better for normalization. And column name are simpler to remember if all are lowercase IMO. |
Ah, thank you.
|
Hm, I don't get it...
Code:
$queryMe = "SELECT contestv.ID, contestv.Contest, contestv.Author, contestv.Location, contestv.TheDate, user.* It freezes my internet browser. Also Author is a userid. |
You are concatenating TABLE_PREFIX twice to the user table, and if Author is a userid, you need to join on user.userid not user.username
|
All times are GMT. The time now is 05:52 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|