0
を保存しない選択:::GUIクライアントからそれを実行する場合DBは、私は、MySQL DBに次のクエリ送信しています順番
select *
from `accounts`
inner join `countries` on `accounts`.`country_code` = `countries`.`country_code`
order by
`accounts`.`type` asc,
`accounts`.`sub_type` asc,
`countries`.`name` asc,
`accounts`.`name` asc
を、私は最初の3つのIDが3,4および5であることを見ることができますDB :: SELECTを使用して実行すると、システムは3、28、29のIDを返します。
何が問題なのでしょうか?私はselect *
からselect accounts.*
にクエリを変更すると問題が解決した事前