使用预准备语句时如何将参数传递给“WHERE IN”查询?

时间:2015-04-07 12:26:50

标签: php mysql laravel pdo prepared-statement

我一直试图解决这个问题好几天,但似乎无法找到解决方案。

我正在使用Laravel并且我正在尝试执行一个有几个“WHERE”& “WHERE IN”子句但如果单个“WHERE IN”包含多个值,则查询将失败,因为它会在整个参数周围添加引号。

我将参数作为字符串传递。如果它包含一个值,则它可以正常工作但在包含多个值时会失败。

$arrival_location = "PALMA"; // WORKS

$arrival_location = "PALMA, BEIJING"; // FAILS

我尝试过几种不同的方式传递参数,但无济于事。

PALMA,北京

'PALMA','北京'

“'PALMA','北京'”

这是查询...

$travel_data = DB::select(DB::raw('SELECT sd.FlightNumber, c1.Country as ArrivalCountry, c1.CityName as ArrivalCity, c2.Country as DepartureCountry, c2.CityName as DepartureCity, a.AirlineName, c1.LatDeg, c1.LonDeg, tp.emergency_name, tp.emergency_relation, tp.emergency_address_line_1, tp.emergency_address_line_2,tp.emergency_city, tp.emergency_country, tp.emergency_post_code, tp.emergency_landline_number, tp.emergency_mobile_number
FROM (SELECT max(PnrBfVersion) as pnrversion, TransactionsID, RecordLocator as recordlocator FROM transactions GROUP BY RecordLocator) as max
JOIN transactions t
ON max.pnrversion = t.PnrBfVersion AND max.recordlocator = t.RecordLocator
LEFT JOIN transaction_details td
ON t.TransactionsID = td.TransactionsID
LEFT JOIN segment_details sd
ON td.TransactionDetailsID = sd.TransactionDetailsID
LEFT JOIN cities c1
ON sd.ArrivalCityCode = c1.CityCode
LEFT JOIN cities c2
ON sd.DepartureCityCode = c2.CityCode
LEFT JOIN airlines a
ON sd.CarrierCode = a.AirlineCode
JOIN traveller_profiles tp
ON td.TravellerID = tp.id
WHERE TravellerID IN (SELECT id FROM traveller_profiles WHERE assigned_manager = ?)
AND TravelType = "10" AND transactionStatus = "T" # Air only and Ticketed data only
AND ArrivalInfo < ?
AND (tp.passenger_first_name LIKE ? OR tp.passenger_last_name LIKE ? OR c1.CityName IN (?) OR c1.Country IN (?) OR c2.CityName IN (?) OR c2.Country IN (?) OR FlightNumber IN (?) OR AirlineName IN (?))'),
array($user_id,
$to_date,
$search_query."%",
$search_query."%",
$arrival_location,
$arrival_country,
$departure_location,
$departure_country,
$flight_number,
$supplier));

检查MySQL日志时,我可以看到它在整个参数周围添加了引号。

AND (tp.passenger_first_name LIKE 'placeholder%' OR tp.passenger_last_name LIKE 'placeholder%' OR c1.CityName IN ('PALMA, BEIJING CAPITAL') OR c1.Country IN ('') OR c2.CityName IN ('') OR c2.Country IN ('') OR FlightNumber IN ('') OR AirlineName IN (''))

在我自己的引号中添加时,会在查询中添加斜杠......

AND (tp.passenger_first_name LIKE 'placeholder%' OR tp.passenger_last_name LIKE 'placeholder%' OR c1.CityName IN ('\'PALMA\', \'MALTA\'') OR c1.Country IN ('') OR c2.CityName IN ('') OR c2.Country IN ('') OR FlightNumber IN ('') OR AirlineName IN (''))

2 个答案:

答案 0 :(得分:1)

您不能传入单个参数,并且它表示SQL语句中的列表。对于此查询,您可以替换:

c1.CityName IN (?)

使用:

find_in_set(c1.CityName, ?) > 0

在某些情况下,这不是一个好主意,因为它会阻止使用索引。在您的查询中,索引不太可能用于此where子句。

答案 1 :(得分:0)

我认为你的查询错了。什么是DB :: select(DB :: raw ??

我从没见过用于laravel的DB :: select。我通常会这样做:

DB::table('table')
            ->join('another_table', 'table.id', '=', 'another_table.another_id')
            ->join('yet_another_table', 'table.id', '=', 'yet_another_table.yet_another_id')
            ->select('table.col', 'another_table.col', 'yet_another_table.col')
            ->get();

您可以将变量(未引用的)传递给您的连接语句。

这里有一些文档:

http://laravel.com/docs/5.0/queries