Function_Count.sql
上传用户:qi668899
上传日期:2013-12-03
资源大小:15269k
文件大小:0k
源码类别:

Windows编程

开发平台:

Delphi

  1. /*This SQL script uses Demos.abs database. 
  2.   Please open ...AbsoluteDatabaseDemosDataDemos.abs database file.
  3.   This sample illustrates use of COUNT function.
  4.   This query counts number of rows in the table "Employee". Having performed it, you will have one column named "c" and one row in it containing number of rows in the table.*/
  5. select (count (*)) as "c"
  6.   from "employee" e1