It's possible insert a query in a count ODBC?
Example:
Select * From Customers where name = 'John';
I can't create a view in my database and I need to make开发者_运维知识库 that query in a Count ODBC to conect with Word.
Do you want to count customers with name 'John'?
If so then use:
Select count(*) From Customers where name = 'John';
精彩评论