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日
#