2012-07-01から1ヶ月間の記事一覧

AngularJS

メモ書き。何か発見するたびに更新してます。 合っているかどうかは分からない話 下記は古い(いつから?)AngularJSの記述方法です。 ng-controllerはwindowオブジェクト直下の関数を見なくなりました。 var app = angular.module('app', []); app.controller…

DB

複数のデータを一括で指定したい whereで大なり小なりを使う select * from table where id >= 0 and id in演算子 select * from table where column in(データ, データ, ...);