เมื่อเราใช้ฟังก์ชัน LOCATE() กับ MySQL WHERE clause เราจำเป็นต้องระบุสตริงย่อยเป็นอาร์กิวเมนต์แรกและชื่อคอลัมน์ของตารางเป็นอาร์กิวเมนต์ที่สองพร้อมกับตัวดำเนินการเปรียบเทียบ ต่อไปนี้เป็นตัวอย่างการใช้ตาราง 'นักเรียน' เพื่อสาธิต -
ตัวอย่าง
สมมติว่าเรามีค่าต่อไปนี้ในตาราง 'นักเรียน' -
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)
ต่อไปนี้ แบบสอบถามแสดงให้เห็นว่าเราสามารถใช้ฟังก์ชัน LOCATE() กับ WHERE caluse ได้อย่างไร
mysql> Select Name, LOCATE('av',name)As Result from student where LOCATE('av',Name) > 0; +--------+--------+ | Name | Result | +--------+--------+ | Gaurav | 5 | | Aarav | 4 | | Gaurav | 5 | +--------+--------+ 3 rows in set (0.00 sec) mysql> select name, LOCATE('av',name)As Result from student where LOCATE('av',Name)=0 ; +---------+--------+ | name | Result | +---------+--------+ | Harshit | 0 | | Yashraj | 0 | +---------+--------+ 2 rows in set (0.00 sec)