如何在PostgreSQL中判斷字符串是否包含目標字符串?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
在大荔等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站制作、做網(wǎng)站 網(wǎng)站設(shè)計制作定制網(wǎng)站開發(fā),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,成都全網(wǎng)營銷推廣,成都外貿(mào)網(wǎng)站建設(shè),大荔網(wǎng)站建設(shè)費用合理。方式一: position(substring in string):
position(substring in string)函數(shù):參數(shù)一:目標字符串,參數(shù)二原字符串,如果包含目標字符串,會返回目標字符串笫一次出現(xiàn)的位置,可以根據(jù)返回值是否大于0來判斷是否包含目標字符串
select position('aa' in 'abcd'); position ---------- 0 select position('ab' in 'abcd'); position ---------- 1 select position('ab' in 'abcdab'); position ---------- 1
strpos(string, substring)函數(shù):參數(shù)一:原字符串,目標字符串,聲明子串的位置,作用與position函數(shù)一致。
select position('abcd','aa'); position ---------- 0 select position('abcd','ab'); position ---------- 1 select position('abcdab','ab'); position ---------- 1
如果包含目標字符串返回t,不包含返回f
select 'abcd' ~ 'aa' as result; result ------ f select 'abcd' ~ 'ab' as result; result ------ t select 'abcdab' ~ 'ab' as result; result ------ t
select regexp_split_to_array('abcd','') @> array['b','e'] as result; result ------ f select regexp_split_to_array('abcd','') @> array['a','b'] as result; result ------ t
注意下面這些例子:
select regexp_split_to_array('abcd','') @> array['a','a'] as result; result ---------- t select regexp_split_to_array('abcd','') @> array['a','c'] as result; result ---------- t select regexp_split_to_array('abcd','') @> array['a','c','a','c'] as result; result ---------- t
看完上述內(nèi)容,你們掌握如何在PostgreSQL中判斷字符串是否包含目標字符串的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
當前題目:如何在PostgreSQL中判斷字符串是否包含目標字符串-創(chuàng)新互聯(lián)
網(wǎng)頁路徑:http://jinyejixie.com/article28/dhodcp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設(shè)計公司、App開發(fā)、關(guān)鍵詞優(yōu)化、品牌網(wǎng)站建設(shè)、網(wǎng)站營銷、品牌網(wǎng)站設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)