MySQL避免了select语句的数据重复

时间:2017-03-07 04:55:17

标签: mysql

MySQL避免select语句的数据重复。请参阅下面的示例

enter image description here

由于

2 个答案:

答案 0 :(得分:0)

从表中查询数据时,可能会出现重复的行。要删除这些重复行,请在SELECT语句中使用DISTINCT子句。

答案 1 :(得分:0)

select th.TxnID,th.TxnAmount,ti.ProductID,ti.itemPrice from TRANHEADS th LEFTJOIN TRANITEMS ti on th.TxnID = ti.TxnID GROUP BY th.TxnID;