Hi
I've two tables
TableA
id
name
TableB
id
tableA_id
desc
oper
As you can see tableA is a master and tableB is a detail table where
we can have many records for each related tableA record.
I need to get all records for tableA with a count on some oper of
tableB.
I suppose I can got it with a join or a subselect but I don't use SQL
often so I'm getting crazy with this stupid query...
Could somebody help ?
Thanks in advance
C
Comment