vendredi 27 octobre 2023

What is the optimised way to pull all items related to parent table from the mysql table?

Suppose we have a table of order consisting of order ids, what would be considered 'best practice' in terms of fetching all item data with their order?

Order table:
--------

| id | name | email |  phone | event_id |
|---- |------| -----|-----| -----|
| 1    | Anish  | anish@gmail.com | 8233472332| 1765 |
| 2    | ABC    | abc@gmail.com   | 784472332| 1765 |
| 3    | XYZ    | xyz@gmail.com   | 646322332| 1525 |

items table:
------------


| id | order_id | category |  qty | price |
|---- |------| -----|-----| -----|
| 1    | 1  | person 1 | 2| 299 |
| 2    | 1    | person 2   | 1| 399 |
| 3    | 2    | person 1   | 1| 299 |

I want to fetch all items and their order name, email, phone in a single query.

Expected result

| name | email | category |  qty | price |
|---- |------| -----------|----- | ----- |
|  Anish   | anish@gmail.com   | person 1 | 2| 299 |
| Anish    | anish@gmail.com.  | person 2   | 1| 399 |
| ABC      | abc@gmail.com     | person 1   | 1| 299 |

One to many relation Orders -> items (It has multiple rows related to a single order)

I want to display all items for an event along with name, email, and phone. Please suggest to me the optimized mysql query for the same. I am using laravel 5.2.



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/z3nvA8k
via IFTTT

Aucun commentaire:

Enregistrer un commentaire