可代替SQL Server中Like語句的用法

來源:互聯網
上載者:User

提到Like語句大家都很熟悉,比如尋找使用者名稱包含有"c"的所有使用者, 我們可以用 use mydatabase

    select * from table1 where username like'%c%"

    以下是完成上面功能的另一種寫法:

    use mydatabase

    select * from table1 where charindex('c',username)>0

    這種方法理論上比上一種方法多了一個判斷語句,即>0, 但這個判斷過程是最快的, 我相信80%以上的運算都是花在尋找字串及其它的運算上, 所以運用charindex函數也沒什麼大不了。用這種方法也有好處, 那就是對%,|等在不能直接用like 尋找到的字元中可以直接在這charindex中運用, 如下:

    use mydatabase

    select * from table1 where charindex('%',username)>0

    大家還可以寫成:

    use mydatabase

    select * from table1 where charindex(char(37),username)>0

    ASCII的字元即為%

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.