Ok so I have table1 holding all my posts, then I have table2 holding all my comments and inside table2 I have a field where the matching post ID is inserted so it knows what comments goto what post. When the script goes to print out all the posts it has to run a query for each post to count how many comments there are for it. So for example if I have 500 posts stored I have to run about 501 queries on the main page (the first query to gather all the posts and then a query in each while() loop to count the comments). I don't really like this because on sites that get upwards of 70,000 uniques daily it is stressing the server (so I hear). Is there any way possible to lessen the amount of queries?