how can i use variable instead of constant to get data from mysql database?
11 views (last 30 days)
Show older comments
ashutosh chandra bhensle
on 22 May 2014
Commented: ashutosh chandra bhensle
on 23 May 2014
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 Comments
Accepted Answer
Roger Wohlwend
on 22 May 2014
Your syntax is wrong. Try the following:
id = 1; qry = sprintf('Select fname From mydb.myface WHERE id = %d', id);
More Answers (0)
See Also
Categories
Find more on Database Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!