首頁 > 資料庫 > mysql教程 > 我們如何將 MySQL INSTR() 函數與 WHERE 子句一起使用?

我們如何將 MySQL INSTR() 函數與 WHERE 子句一起使用?

WBOY
發布: 2023-09-04 11:41:06
轉載
998 人瀏覽過

我们如何将 MySQL INSTR() 函数与 WHERE 子句一起使用?

當我們將INSTR() 函數與MySQL WHERE 子句一起使用時,我們需要提供表格的列名作為第一個參數,提供子字串作為第二個參數以及比較運算符。以下是使用「學生」表進行演示的範例-

範例

假設「學生」表中有以下值-

mysql> Select * from Student;
+------+---------+---------+-----------+
| Id   | Name    | Address | Subject   |
+------+---------+---------+-----------+
| 1    | Gaurav  | Delhi   | Computers |
| 2    | Aarav   | Mumbai  | History   |
| 15   | Harshit | Delhi   | Commerce  |
| 20   | Gaurav  | Jaipur  | Computers |
| 21   | Yashraj | NULL    | Math      |
+------+---------+---------+-----------+

5 rows in set (0.02 sec)
登入後複製

現在,以下查詢展示如何將INSTR() 函數與WHERE caluse 一起使用-

mysql> select name, INSTR(Name,'av')As Result from student where INSTR(Name,'av') > 0;

+--------+--------+
| name   | Result |
+--------+--------+
| Gaurav |      5 |
| Aarav  |      4 |
| Gaurav |      5 |
+--------+--------+

3 rows in set (0.00 sec)

mysql> select name, INSTR(Name,'av')As Result from student where INSTR(Name,'av') = 0 ;

+---------+--------+
| name    | Result |
+---------+--------+
| Harshit |      0 |
| Yashraj |      0 |
+---------+--------+

2 rows in set (0.01 sec)
登入後複製

以上是我們如何將 MySQL INSTR() 函數與 WHERE 子句一起使用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板