2013-02-15から1日間の記事一覧

1. SQL ORDER BYの勉強

1. 昇順 SELECT * FROM my_items ORDER BY id ASC;で my_itemsテーブルのidが昇順で並べられる 2. 降順 SELECT * FROM my_items ORDER BY id DESC;で my_itemsテーブルのidが降順で並べられる 3. WHERE句 SELECT * FROM my_items WHERE sales<=70 ORDER BY s…

1. WORDPRESS INSTALL

WORDPRESS | 日本語 PAGEからWORDPRESS 3.5.1(zip)をダウンロードする。 xampp\htdocs配下に\wordpressフォルダ作成 zipファイルを\wordpressフォルダに展開 新規PAGEからlocalhost/wordpressを起動する

〜WORDPRESS & SQL ORDER BY〜