vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Query to combine 2 tables? (https://vborg.vbsupport.ru/showthread.php?t=66298)

HakkieDEV 06-18-2004 10:06 PM

Query to combine 2 tables?
 
Hi all,

I am using a postcounthack (the one of touchingvirus) and I wanted to show on forumhome the top10threadstarters in a specific forumid.

Well, this query works and shows the statistics of the members:

[sql]$stats10 = $DB_site->query('SELECT
`threadcount`.`userid`,`threadcount`.`count1`,
`user`.`userid`,`user`.`username` FROM threadcount, user
Where `user`.`userid`=`threadcount`.`userid` ORDER BY
`threadcount`.`count1` DESC LIMIT 0,10');[/sql]

However, while it shows the threadcount, it doesn't link the userid to the username. (And, the username isn't being stored in the threadcount-table)

So, how do I combine this query with the user-table to display the username next to the threadcount?

HakkieDEV 06-21-2004 06:56 PM

I guess I wasn't really clear about what I would like to do, so I hope this info will make it a bit easier to help me. :)

I'm trying to combine 2 tables like this:

I have 2 tables, postcount and user
postcount has field userid
user has field userid
user has field username

How do I combine these so I can display the username together with the postcount for each userid?

I tried to do:
[sql]
$postcountuser = $DB_site->query("
SELECT userid, user FROM postcount, user where user.username=postcount.username
order BY username");


[/sql]

But, mysql considers this ambigious.
What am I doing wrong here?


All times are GMT. The time now is 09:28 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
  • Page Generation 0.00882 seconds
  • Memory Usage 1,705KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete