Feb 22, 2001 #1 EscapeUK Programmer Joined Jul 7, 2000 Messages 438 Location GB how do i convert the following SQL statement into a passthrough statement in Access select count(distinct customersurname) from mydatabasetable i have tried typing this in but it does not work
how do i convert the following SQL statement into a passthrough statement in Access select count(distinct customersurname) from mydatabasetable i have tried typing this in but it does not work
Feb 23, 2001 #2 wanmaster Programmer Joined Nov 20, 2000 Messages 94 Location NL SELECT DISTINCT(customersurname),COUNT(customersurname) FROM mydatabasetable GROUP BY customersurname Remedy Upvote 0 Downvote
SELECT DISTINCT(customersurname),COUNT(customersurname) FROM mydatabasetable GROUP BY customersurname Remedy