gpt4 book ai didi

php - 如何在自动完成标签中添加两个字符串

转载 作者:行者123 更新时间:2023-12-01 07:06:40 30 4
gpt4 key购买 nike

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

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

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

我的问题是如何在标签中添加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/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com