Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
列名 (where 句) を使用して matlab データベースのデータを取得するにはどうすればよいですか? 私はこれを試しましたが、うまくいきません:
catgQuery = strcat('select ID from MyTable where ColumnName= ', Category); catgCurs = exec(conn,catgQuery); catgResult = fetch(catgCurs); r1 = catgResult.data
引用符で囲む必要がありますcategory
category
catgQuery = strcat('select ID from MyTable where ColumnName= ''', Category, '''');