0

如何使用列名(where 子句)检索 matlab 数据库中的数据?我已经尝试过了,但它不起作用:

catgQuery = strcat('select ID from MyTable where ColumnName= ', Category);
catgCurs = exec(conn,catgQuery);
catgResult = fetch(catgCurs);
r1 = catgResult.data
4

1 回答 1

0

你需要在周围加上引号category

catgQuery = strcat('select ID from MyTable where ColumnName= ''', Category, '''');
于 2013-04-17T15:49:14.150 回答