S
SpookiePower
I found this query in the Northwind sample database.
SELECT Employees.EmployeeID, [LastName] & ", " & [FirstName] AS ReportsTo
FROM Employees
ORDER BY Employees.LastName, Employees.FirstName;
I do not know, in the first line, what & ", " & means ??
Someone who can help me with this one ?
SELECT Employees.EmployeeID, [LastName] & ", " & [FirstName] AS ReportsTo
FROM Employees
ORDER BY Employees.LastName, Employees.FirstName;
I do not know, in the first line, what & ", " & means ??
Someone who can help me with this one ?