how can i use variable instead of constant to get data from mysql database?
조회 수: 9 (최근 30일)
이전 댓글 표시
ashutosh chandra bhensle
2014년 5월 22일
댓글: ashutosh chandra bhensle
2014년 5월 23일
qry = sprintf('Select fname From mydb.myface WHERE id=1');
working but
id=1; qry = sprintf('Select fname From mydb.myface WHERE id=id'); not working please help me!!
댓글 수: 0
채택된 답변
Roger Wohlwend
2014년 5월 22일
Your syntax is wrong. Try the following:
id = 1; qry = sprintf('Select fname From mydb.myface WHERE id = %d', id);
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Database Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!