我有两张桌子 tableA 和 tableB ..
在表 A 中,我有列(名称) 在表 B 中,我有列(金额)
表 A:
cat_id cat_name
1 Man
2 Women
3 General
表 B:
cat_id cat_price
1 12
1 18
1 34
1 23
2 21
3 31
1 21
3 56
现在在这两个表中,我有名称和价格,它们由 cat_id 链接。
现在我想显示该特定名称的名称和价格,价格应该是特定类别的总和......
像这样的东西:
新表:
cat_name cat_price
Man 104
Woman 21
General 87
请帮忙..谢谢...