我有如下表
id name address
=====================
{1} A abc
{2} B abcd
{3} c abcde
现在我想根据 id 检索信息......但是传递的 id 是整数,它现有的 id 是整数 [] 所以我怎么能在这里转换
我这样的查询
select name,address from business where id='{1}';
在 where 子句中它只需要整数 [] ..但我只想传递输入整数所以请告诉我如何将整数 [] 转换为整数请告诉我