netbumbler
ISP
Could anyone critique this syntax for me?
SELECT dpch.pname, dpch.pnum, (select count(*) from proquick where proquick.rph=dpch.pname) as expr1 from dpch;
Anyone see any problem with this? I'm trying to get a count of proquick instances per pname's in dpch.
Thanks,
Chris
SELECT dpch.pname, dpch.pnum, (select count(*) from proquick where proquick.rph=dpch.pname) as expr1 from dpch;
Anyone see any problem with this? I'm trying to get a count of proquick instances per pname's in dpch.
Thanks,
Chris