I have MySQL structured like this
- MasterTable
- ChildTableA
- ChildTableB
- ChildTableC
- ChildTableD
All child tables are related to a MasterTable through UID field.
I want to build a grid with search option which will allow to search MasterTable as well as all ChildTable’s for a string
How would I approach this issue ?
Arthur