MySQL

PythonでMySQLに接続

http://www.python-izm.com/contents/external/mysql.shtml

MULとは

MUL -> 重複可能な外部制約キーPRI -> 重複不可な外部制約キー 外部制約キー -> テーブルの指定したカラムに格納できる値を他のテーブルに格納されている値だけに限定するもの http://hrt0kmt.hatenablog.com/entry/2014/07/09/000000 http://www.dbonline.j…

mysql_exceptions.OperationalError: (1701,

mysql_exceptions.OperationalError: (1701, 'Cannot truncate a table referenced in a foreign key constraint http://stackoverflow.com/questions/5452760/truncate-foreign-key-constrained-table

mysql_exceptions.OperationalError: (2019, "Can't initialize character set utf-8

utf-8 -> utf8 http://purazumakoi.hatenablog.com/entry/2013/11/20/202637

ユーザー管理

http://www.karakaram.com/mysql-user-grant

MySQL テーブル構造確認

describe [table name]; または show columns from [table name];

MySQL date/datetimeオブジェクトのinsert

cast("2014-11-08" as date) cast("2014-11-08 20:30:00" as datetime) insertのvaluesの部分は上記のようにしてinsert