Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以在计数 ODBC 中插入查询吗?
例子:
Select * From Customers where name = 'John';
我无法在我的数据库中创建视图,我需要在 Count ODBC 中进行该查询以连接 Word。
您想计算名称为“John”的客户吗?
如果是这样,那么使用:
Select count(*) From Customers where name = 'John';