2016-03-10から1日間の記事一覧

降順にソートした結果の先頭5列だけの移動平均を出すSQL文

select の入れ子 って感じに書く select avg(current) from (select current from tbl_data where code=9984 and date<=20160310 order by date DESC limit 5) items;ネタ元 http://stackoverflow.com/questions/1854383/select-average-from-mysql-table-wi…

OLE/COM オブジェクト ビューアー

COMコンポーネントの登録状況を調べたりするのに使える。c:\Program Files (x86) \Windows Kits\8.0\bin\x86\ フォルダーにある oleview.exe ネタ元 http://qa.atmarkit.co.jp/q/907 https://msdn.microsoft.com/ja-jp/library/d0kh9f4c.aspx