HomeMicrosoft Access

Microsoft Access

How To Make Name Only Appear Once In Query Access?

Use `DISTINCT` on the name field Use `GROUP BY` on the name field Use `SELECT DISTINCT Name FROM YourTable;` Use `SELECT Name FROM YourTable GROUP BY Name;` Use...

Trending Today