2014年10月9日

MYSQL SQL Server 事务

摘要: 开始: start transaction; # 一定要有这个 ‘;’ 号。注意: MYSQL 用的是快照隔离、就是说一个连接在修改的时候别的连接还是可以查询的。 例子: create table T1(X int); insert into T1(X) values(100)... 阅读全文

posted @ 2014-10-09 16:34 蒋乐兴的技术随笔 阅读(221) 评论(0) 推荐(0) 编辑

MYSQL select ....outfile.....from.....

摘要: select .... outfile 'file_path' fields terminate by '\t' lines terminate by '\r\n' from table_name;---------------------------------------------------... 阅读全文

posted @ 2014-10-09 11:45 蒋乐兴的技术随笔 阅读(367) 评论(0) 推荐(0) 编辑

MySQL load data infile

摘要: 语法: load data [low_priority] [local] infile ‘file_path' [replace] [ignore] into table table_name [(column_list)] lines[ terminated by 'string'... 阅读全文

posted @ 2014-10-09 08:59 蒋乐兴的技术随笔 阅读(231) 评论(0) 推荐(0) 编辑

导航