This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我正在使用以下查询来使用 PHP 和 MySQL 检索数据。
$query = "
SELECT f.*, CONCAT(p.first_name, ' ', p.last_name) AS Name
FROM a_fyp_evl f, a_person p
WHERE p.person_id = f.faculty_id
AND f.group_id = '$_COOKIE[id]'
";