*point 1:
instr方法的格式為
instr(源字串, 目標字串, [起始位置], [匹配序號])
例如:instr('corporate floor','or', 3, 2)中,源字串為'corporate floor', 目標字串為'or',起始位置為3,取第2個匹配項的位置。
預設查詢順序為從左到右。當起始位置為負數的時候,從右邊開始查詢。
所以select instr('corporate floor', 'or', -1, 1) "instring" from dual的顯示結果是 14
*point 2:
對比兩個表的字段是否一致,使用如下語句:
[code]
with a as (
select *
from cols where table_name=upper('t_exchangetestresult')
),b as (
select * from cols where table_name = upper('t_dailytrackresult')
)select a.column_name, b.column_name, case when a.column_name=b.column_name then 'same' end as is_same
from a, b
where a.column_id(+)=b.column_id
[/code]
Oracle開發小集錦(不斷更新)
其中部分是 其它地方。select user from dual 檢視當前連線的使用者名稱 ora 24338 未執行語句控制代碼 這個問題主要出現在使用資料庫游標的時候。當執行儲存過程,返回的游標沒有開啟時,就會報這個錯。open cur user for select from sy users...
PHP部署問題集錦(不斷更新)
1 yum安裝lnmp環境時,需要設定session許可權,目錄 var lib php session 保證有寫的許可權 2 yum安裝php時,使用phpoffice或者phpexcel時如果報如下錯誤 class xmlwriter not found 列印phpinfo 看是否支援xmlre...
Android開發FAQ集錦!!! 不斷更新
答 谷歌官網的 這個被和諧了,經常上不去,中國的網路大家都是 知道的呵呵 2.drawable hdpi,drawable ldpi,drawable mdpi有什麼區別?答 主要是為了支援多解析度的.hdpi裡面主要放高解析度的,如wvga 480x800 fwvga 480x854 mdpi 裡...