Borrar filtros
Borrar filtros

how can i use variable instead of constant to get data from mysql database?

4 visualizaciones (últimos 30 días)
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!!

Respuesta aceptada

Roger Wohlwend
Roger Wohlwend el 22 de Mayo de 2014
Your syntax is wrong. Try the following:
id = 1; qry = sprintf('Select fname From mydb.myface WHERE id = %d', id);

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by