2017-01-09から1日間の記事一覧

node.js htmlファイル ダウンロード

// urlにあるファイルを savepath にダウンロードする // ダウンロード元URLの指定var url = "http://tokotoko6667777.hippy.jp/tossy-n/"; // 保存先のパスを指定var savepath = "test.html"; // 利用モジュールの取り込みvar http = require('http'); // H…

mysql データ集計

・レコードの総件数を調べる count(*) select count(*) from tossy; +----------+| count(*) |+----------+| 6 |+----------+ ・フィールドにどんな値が入っているか調べる distinct select distinct team from tossy; +--------+| team |+--------+| red ||…

mysql ・並び替え 条件の制限

・並び替え(小さい順) order by select * from tossy order by score; +----+--------+------------------+--------+-------+---------------------+| id | name | email | team | score | created |+----+--------+------------------+--------+-------+-…