64-bit Linux 下裝 32-bit 環境
換了電腦近半年,要用的東西都裝得七七八八。卻有一些軟件根本沒有 64-bit 版本,例如 Java-plugin、flash player 和 OpenOffice.org。有關公司或團體好像也無意推出 64-bit 版本
終於把心一橫,下定決心,根據 “The Debian GNU/Linux AMD64 HOW-TO”,裝了 32-bit 系統。並使用 chroot 環境把 32-bit 和 64-bit 軟件分開
(閱讀全文)
@import url( "http://www.mocasting.com/main/wp-content/sitetemplates/almost-spring/templates/wp-layout.css" );
換了電腦近半年,要用的東西都裝得七七八八。卻有一些軟件根本沒有 64-bit 版本,例如 Java-plugin、flash player 和 OpenOffice.org。有關公司或團體好像也無意推出 64-bit 版本
終於把心一橫,下定決心,根據 “The Debian GNU/Linux AMD64 HOW-TO”,裝了 32-bit 系統。並使用 chroot 環境把 32-bit 和 64-bit 軟件分開
好久沒上來…
不過,最近自己確是沒什麼好寫…想寫的事沒有發生,有發生的又不想寫(又或忘記寫)
香港/中國/世界也多姿多采
個 blog 三月開,現在已有超過九千八次點擊數字。兩家每日有超過二百次,明天應該過萬!!![]()
![]()
![]()
![]()
全靠 google 同 yahoo…相信各 search engine 佔了當中九十八巴仙,加上自己又佔兩巴仙,剛好一百。
Question:
Consider the following table
create table t (
seq int,
seg varchar2(100)
);
Write a SQL to concatenate the segments of the different rows to return a single string, where the order is specified in the seq column
Question:
Consider the following table
While seq is supposed to be a continous series of figures, this is not the case. How to detect the range of “holes” within the data?create table t ( seq int );
For example, assume t contain the following:
t
——-
1
2
6
8
The values indicating 3-5 and 7 should be returned.
The funny part in this question is that you need to return valuesoutside the data. But those data can be derived by the data easily