【问题标题】:Firebird - Create count ODBC with queryFirebird - 使用查询创建计数 ODBC
【发布时间】:2010-11-09 16:34:24
【问题描述】:

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

例子:

Select * From Customers where name = 'John';

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

【问题讨论】:

  • 请编辑您的查询,但实际上很难说出您要解决什么问题。
  • @user501007,当您说“计数 ODBC”时,您是什么意思? ODBC 通常用于表示 Open DataBase Connectivity - 它是一种连接数据库的方式,因此“a Count ODBC”一词通常没有意义。

标签: database odbc firebird firebird2.5


【解决方案1】:

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

如果是这样,那么使用:

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

【讨论】:

    猜你喜欢
    • 2022-10-01
    • 2022-01-19
    • 1970-01-01
    • 2020-08-29
    • 1970-01-01
    • 2017-05-26
    • 1970-01-01
    • 2018-09-14
    • 1970-01-01
    相关资源
    最近更新 更多