[MySQL] 基本メモ: データの集計[MySQL] 基本メモ: データの集計
件数 > select count(*) from users; ユニークデータのみ(重複無し)の件数 > select ditinct team from users; 最大値/最小値/平均値/合計 > […]
件数 > select count(*) from users; ユニークデータのみ(重複無し)の件数 > select ditinct team from users; 最大値/最小値/平均値/合計 > […]
レコードの更新 > update users set email='taro@example.com' where id=5; > update users set email='taro@example.c […]
ローカルで開発していたCakePHPベースのウェブアプリを別サーバーで稼動させようとしたら表記のエラーが発生。 原因はphp-xmlパッケージの欠如。DomDocumentクラスはphp-xmlパッケージに含まれているの […]
> select * from users; +------+--------+--------------------+----------+-------+------+-----------+-------- […]
レコードの挿入 > insert into users (name, email, password, score, memo, created) values ('yamada', 'yamada@example […]
テーブルの作成 > create table users ( id int, name varchar(255), email varchar(255), password varchar(32), score d […]
データベースの作成 > create database test_app; データベースの一覧 > show databases; データベースの削除 > drop database test_app; […]
rootにパスワードを付ける。 $ mysql -u root > set password for root@localhost=password('xxxxx'); > exit rootにログイン。 $ […]
前のエントリのサンプルでbusyboxというOSイメージを使っていたが、知らなかったので調べてみた。 BusyBox http://www.busybox.net/ busybox Repository | Docker […]
Dockerの利点はポータビリティにある。すなわち、作成されたコンテナをコピーすることで異なる環境でも稼動させることができる。しかし、データを永続化したい場合などホストのディレクトリをコンテナにマウントしてしまうと、ポー […]
-vコマンドを使うと、ホストのディレクトリをコンテナのディレクトリにマウントすることができる。 サンプル 下の例ではホストの/host_dataディレクトリをコンテナの/container_dataディレクトリにマウント […]