[求助] 为什么不能使用统计函数啊?
我用VB6+My ODBC DRIVER 3.51成功连接了MySQL数据库,读写都没什么问题,但是就是不能使用含有统计函数的SQL语句来操作,一旦使用了统计函数,就报错。总是提示SQL语法错误。请教高手,这是怎么回事?连接语句的代码:
dim cn as adodb.connection
dim rst as adodb.recorset
set cn=new adodb.connection
with cn
.commandtimeout=30
.connectionstring="Driver={MySQL ODBC 3.51 Driver};server=IP;database=db;uid=root;pwd=password"
.cursorlocation=adcursorclient
.open
end with
set rst=new adodb.recordset
rst.open "Select sum(field1) as totalnumber from table1",cn,1,3
..........