Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

สามารถใช้ฟังก์ชัน CONCAT_WS () กับ MySQL WHERE ได้อย่างไร


เมื่อเราใช้ฟังก์ชัน CONCAT_WS() กับส่วนคำสั่ง WHERE ผลลัพธ์จะขึ้นอยู่กับเงื่อนไขที่ให้ไว้ในส่วนคำสั่ง WHERE สามารถเข้าใจได้จากตัวอย่างตาราง “นักเรียน” ดังนี้

ตัวอย่าง

mysql> Select CONCAT_WS(' ',Name, Last_name, 'Resident of', Address, 'is studying', Subject)AS 'Student Detail' from student WHERE id = 20;
+----------------------------------------------------------------+
| Student Detail                                                 |
+----------------------------------------------------------------+
| Gaurav Rathore Resident of Jaipur is studying Computers        |
+----------------------------------------------------------------+
1 row in set (0.00 sec)