Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データベースから取得したデータを最初の 3、5、またはその他の文字に従って並べ替えるにはどうすればよいですか?
$query = "SELECT * FROM macyayin ORDER BY channel, country";
たとえば、この例では。チャンネルの最初の3文字でソートしたい..
$query = "SELECT left(channel,3) as ch,channel,country FROM macyayin ORDER BY ch";