数据库变量查询字符串转换_MySQL
程序员文章站
2022-04-14 09:29:29
...
bitsCN.com
数据库变量查询字符串转换
printf("输入货号单:"); char k[10];gets(k); sprintf(sql_update, "select * from huodan where 货单号='%s'",k); res=mysql_query(&myCont,sql_update);//查询
这里是通过C语言将含有变量%s的变量保存在sql_update中。。。。
bitsCN.com