使用查询创建计数 ODBC

发布于 2024-10-01 13:23:09 字数 204 浏览 0 评论 0原文

可以在 count ODBC 中插入查询吗?

示例:

Select * From Customers where name = 'John';

我无法在数据库中创建视图,并且需要在 Count ODBC 中进行该查询才能与 Word 连接。

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 connect with Word.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯狂的代价 2024-10-08 13:23:09

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

如果是这样,那么使用:

Select count(*) From Customers where name = 'John';

Do you want to count customers with name 'John'?

If so then use:

Select count(*) From Customers where name = 'John';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文