2012年11月28日
#
摘要: 迭代查询
connect by prior start with
阅读全文
2012年10月23日
#
摘要: 1. 复制表结构及其数据:
create table table_name_new as select * from table_name_old
阅读全文
2012年10月17日
#
摘要: nohup ./startWebLogic.sh &
tail -f nohup.out
阅读全文
摘要: Insert into Table2(a, c, d) select a,c,5 from Table1
select a,c INTO Table2 from Table1
阅读全文
摘要: select sysdate,to_char(sysdate+1/24/60,'yyyy-mm-dd HH24:MI:SS') from dual; --加1分钟
阅读全文
2012年2月14日
#
摘要: iOS开发,PhoneGap,Titanium
阅读全文
2011年9月2日
#
摘要: oracle合并查询,wmsys.wm_concat函数,oracle10以上
阅读全文
2011年7月14日
#
摘要: 导出导出数据及数据结构:
在控制台 mysql/bin
Export: mysqldump -u root -p DATABASE >fil2.sql
Import: mysql -u root -p DATABASE
阅读全文
2011年5月5日
#
摘要: mysql汉字乱码解决
set names gbk;
default-character-set=gbk
阅读全文
2011年4月12日
#