Feb 22, 2001 #1 EscapeUK Programmer Jul 7, 2000 438 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 Nov 20, 2000 94 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