10 2013 档案

摘要:一.复制表结构及数据到新表create table new_tb select * from old_tb二.只复制表结构到新表create table new_tb select * from old_tb where 1=2或者如下所示:create table new_tb like old_tb三、复制旧表的数据到新表(假设两个表结构一样)insert into db1.t1 select * from db2.t2 where 1=1(完全复制/不同数据库)insert into db1.t1(col2,col3) select col5 as col2,col6 as c... 阅读全文
posted @ 2013-10-30 16:42 jeamsluu 阅读(233) 评论(0) 推荐(0)
摘要:一、在内联框架中,刷新整个框架,在.net中使用此方法(ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "refresh", "window.parent.location.href=window.parent.location.href;", true);); 阅读全文
posted @ 2013-10-24 10:02 jeamsluu 阅读(129) 评论(0) 推荐(0)