Ruby on Rails は初めてです。
という名前の単純なテーブルを取得しますLoadtest
。
テーブルには、 、 の 2 つの属性がありtestname
ますexectime
。
テーブルは次のようになります。
\-------------------------
testname | exectime |
test A | xx-xx-xx |
test B | xx-xx-xx |
\--------------------------
testname
など、 の下にあるすべてのエントリを取得したい["test A", "test B"]
。どうすればこれを達成できますか?
を使用Loadtest.find(:all)
して、テーブル内のすべてのエントリを取得し、いくつかのコードを記述してtestname array
. しかし、のような直接的な方法はありますLoadtest.column[:testname]
か?
御時間ありがとうございます!