Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6123111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:58:38+00:00 2026-05-23T15:58:38+00:00

Suppose i have the following tables : projects( project_id , project_name ) documents( document_id,document_name

  • 0

Suppose i have the following tables :

  • projects( project_id , project_name )
  • documents( document_id,document_name
    , project_id)

which is kind of top-down hierarchically , i use select statement and loops to generate nested array ex.:

$result_array = array();
$projects = mysql_query(' SELECT * FROM projets') ;
$i = 0 ;
while( $row_proj = mysql_fetch_assoc($projects)  )
{
   $result_array[$i] = $row_proj ; 
   $documents = mysql_query('SELECT * FROM documents WHERE project_id='.$row['project_id']);
   $doc_res = array();
   while( $row_doc = mysql_fetch_assoc($documents) 
   { 
       $doc_res[] = $row_doc;
   }
   $result_array[$i]['documents'] = $row_doc ; 
   $i++;
}
.. and so on 

the result is nesteed array so in view i can print it like :

foreach( $projects as $project )
{
  echo $project['project_name'];
  foreach( $project['documents'] as $document )
  {
     echo ..
  }
}

how i can generate this using simple flat loop using SQL statment or any other thing , this way seem not the best one , sometimes i use join but its not generate things like nested array .

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T15:58:39+00:00Added an answer on May 23, 2026 at 3:58 pm

    If I understand the thing you want to achieve I would do:

    SELECT * FROM documents 
    INNER JOIN projects ON projects.id = documents.project_id 
    

    Then iterate through all of the documents to group them in arrays by project_id with PHP. You will have one query again. It is possible to do MySQL loop but would rather by an ugly thing to do and for the above example it won’t give you any advantage.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose you have to following tables where a sale consists of products and a
Suppose I have the following tables in my database: Now all my queries depend
I use SQL Server 2000. Suppose I have two tables like the following: Area
Suppose I have the following tables: Articles with fields article_id , title Tags with
Let's suppose I have a the following simplified example database consisting of three tables:
Suppose I have the following tables: User, Computer and Command. Users and computers may
Suppose I have the following tables: CREATE TABLE Game ( GameID INT UNSIGNED NOT
suppose I have the following tables sqlite> SELECT * FROM Artists; ArtistID|ArtistName 1 |Peter
Suppose i have the following 2 SQL tables: Foo Column DataType --------------------------- Title NVARCHAR(20)
Suppose we have the following table data: ID parent stage submitted 1 1 1

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.