Hey, i need to specify following in one query: It should include the Activity_name and Child_ first_name and last_name for each child registered for the specified Activity. There is (Football/Art/IT) activities in Activity Table(which has primary_key for each activity). What would be the query that would list children registered for Art activity? Children name's should be displayed in one column. Thanks.
|
Without providing your table structure, I cannot provide an accurate query. However, if I were to design a set of tables that store a list of children, a list of activities, and a correlation between the two, it would consist of three tables named "children," "activities," and "linktable" in this example.
The following query is an example of how to see which children are signed up for Art:
|
|||||
|
child activityforlinktablein my answer below. Note that the space in your table name may require some backticks around it. Do the same for the various field names as appropriate. If you are still not getting the desired output, post another comment for an update. – JYelton Dec 24 '10 at 19:24