我有这个sql查询..
select i.invoiceid as transactionid, i.date, i.total,
'invoice' as transaction_type
from invoice
我在 php 中运行它并在 foreach 循环中回显总数,就像这样......
echo gettype($row['total']) . "<br/>";
并返回所有总数string
如何将我的 sql 查询中的 i.total 转换为 int 或 float?
我试过了
convert(int, i.total)
那没有用:(