Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Viewing all articles
Browse latest Browse all 3160

MATLABSQLWHERE格式 MATLAB SQL 数据库 编程开发

$
0
0

需要在matlab读取access数据库数据。链接类的文章比较多,也通过了

http://blog.csdn.net/xjujun/article/details/9969943

实际遇到的困难在于链接表格很容易通过

conn=database( 'data' , '' , '' )
cursor = exec(conn,'select fundNetWorth from fundNetWorthData ')
//测试成功

而在查询语句增加条件 where就不知道如何写了

cursor = exec(conn,'select * from fundNetWorthData where (fundCode=''sh501001'')')
//测试成功

留意是两个单引号


Viewing all articles
Browse latest Browse all 3160

Trending Articles