これは非常に簡単かもしれませんが、検索エンジン (google | stackoverflow) の問題を定式化する方法さえ知りません。
データベースのデータに基づいて HTML フォームを作成しようとしています。
私の問題:
これらの列を持つテーブルがあります:
- ID
- ファイル
- 言語
- 等...
データで満たされた (例):
//no < table > here
//only **file** column is really important for my select (that I am asking for)
id | file | lanugage | etc
====================================================================
1 |about.php | english | something
2 |conta.php | english | something
3 |mysql.php | hungar | something
4 |mysql.php | english | something
5 |mysql.php | french | something
6 |blog.php | french | something
配列を求めている選択後、次のようになります
0 => about.php, 1 => conta.php, 2 => mysql.php, 3 => blog.php
解決策 SELECT
またはSELECT t1.file as from table as t1 group by Filesの個別のオプションを
探していましたが
、これは高速でした:)ありがとうFiles