PHP程序中使用下面定义下面SQL语句,从数据库读取数据
$sql_getdate="select detection_date from tm_bug a where a.ft_id='$taskID'";
程序执行时报错如下:
ERROR:Unknown column 'detection_date' in 'field list'
the wrong sql:select detection_date from tm_bug a where a.ft_id='T03475'
但是使用数据库工具HeiDiSQL连接数据库,执行语句select detection_date from tm_bug a where a.ft_id='T03475'时,可以正常查出所需数据
请问哪位知道是什么原因?
杨魅力