使用第一个查询中的变量从第二个查询获取结果出错

时间:2018-06-12 17:01:35

标签: php mysql sql

我从第一个查询正确得到结果但是,当我想在WHERE条件中的第二个查询中使用它时,我得到查询错误1064.如果我删除WHERE它将正常工作。此外,当我尝试在第二个查询代码中回显变量时,它将打印。变量不会仅在第二个查询中的WHERE中起作用



compile group: 'org.hibernate', name: 'hibernate-ehcache', version: '5.1.5.Final'
compile group: 'org.hibernate', name: 'hibernate-jcache', version: '5.2.9.Final'
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.1.5.Final'




1 个答案:

答案 0 :(得分:0)

在您的第二个查询中尝试以下操作:

$queryCom = "SELECT * from DATES as dates, BOOKING as booking where dates.time = $time and booking.IDofFullDate= $date";