摘要: if there are no changes in synchro...from updating view需要点击一下team/update 阅读全文
posted @ 2014-10-15 18:09 LeonGo 阅读(342) 评论(0) 推荐(0) 编辑
摘要: mysql字符串中的转义符是\like环境中默认的转义符也是\这样执行like时,\会发生两次转义 ,like第二次转义只对%_\起作用。like '\\\\' 匹配\like '\\u' 匹配u所以为了容易区分,最好是在like环境定义其他字符为转义符。比如like'\'\\update|%' e... 阅读全文
posted @ 2014-10-15 16:24 LeonGo 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 1 --查看表结构信息 2 1.desc 表名; 3 2.show columns from 表名; 4 3.describe 表名; 5 6 --显示如何创建一个表 7 show create table 表名; 8 9 use information_schema10 select * ... 阅读全文
posted @ 2014-10-15 13:51 LeonGo 阅读(245) 评论(0) 推荐(0) 编辑