I have this query
GetRecords = conn.RetriveQuery("SELECT * FROM tbl_student WHERE StudentID = " & studetId)
which will output a table with the following columns:
Student ID | Lastname | Firstname | Middlename | Gender | DOB | address | Contact | Email
Is there a way to create a short query which concatenates lastname
,firtsname
,middlename
as a fullname, so that the output would be
Student ID | Fullname | Gender | DOB | Address | Contact | Email