开发者

Firebird - Create count ODBC with query

开发者 https://www.devze.com 2023-01-24 00:43 出处:网络
It\'s possible insert a query in a count ODBC? Example: Select * From Customers where name = \'John\';

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';
0

精彩评论

暂无评论...
验证码 换一张
取 消