0

可以在计数 ODBC 中插入查询吗?

例子:

Select * From Customers where name = 'John';

我无法在我的数据库中创建视图,我需要在 Count ODBC 中进行该查询以连接 Word。

4

1 回答 1

0

您想计算名称为“John”的客户吗?

如果是这样,那么使用:

Select count(*) From Customers where name = 'John';
于 2010-11-16T09:32:28.490 回答