这是我对自动完成的查询:

$studentsQuery = $conn->query('select s.student_fname,s.student_lname as label,blahhh.....);


从查询中,我在输入字段值中得到的结果为student_lname,因为我将其写为label

我的问题是如何在标签中添加student_fnamestudent_lname

例:
我的名字像Mohammad(student_fname)Waheed(student_lname
当前结果是“ waheed”,但我想要“ Mohammad Waheed”。

最佳答案

concat()函数用于组合多个字符串:

select concat(s.student_fname, ' ', s.student_lname) as label ...

关于php - 如何在自动完成标签中添加两个字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41301109/

10-09 06:57