mysql:5374
From: "中根" <"中根" <nakanecchi@xxxxxxxxxx>>
Date: Sat, 20 Apr 2002 12:24:20 +0900
Subject: [mysql 05374] Re: SELECT 文の結果表示順番について
いまばやし様、滝口様、ご指導ありがとうご ざいます。 滝口さんwrote >select field(no,2,1),no,name from momusu >where field(no,2,1) > 0 >order by 1 を実行しまして、希望通りの結果が出まし た。ありがとうございました。 以下はクエリとその結果のメモです。 テーブル:momusu +--+------+ |no|name | +--+------+ |1 |辻 | |2 |加護 | |3 |なっち| +--+------+ ->select * from momusu where no='3' or no='1'; +--+------+ |no|name | +--+------+ |1 |辻 | |3 |なっち| +--+------+ ->select *,field(no,3,1) from momusu; +--+------+-------------+ |no|name |field(no,3,1)| +--+------+-------------+ |1 |辻 |2 | |2 |加護 |0 | |3 |なっち|1 | +--+------+-------------+ ->select *,field(no,3,1) from momusu where field(no,3,1)>0; +--+------+-------------+ |no|name |field(no,3,1)| +--+------+-------------+ |1 |辻 |2 | |3 |なっち|1 | +--+------+-------------+ ->select *,field(no,3,1) from momusu where field(no,3,1)>0 ->order by field(no,3,1); +--+------+-------------+ |no|name |field(no,3,1)| +--+------+-------------+ |3 |なっち|1 | |1 |辻 |2 | +--+------+-------------+ 以上 PS メーリングリストへの返信の出し方が良 くわからず、ご迷惑をかけております。 このメールもうまく出せているか自信無いで す。変な出し方になっていたらすみません。