I'm trying to run something like this in Excel:
SELECT currency_id, period_id, date, price_1, price_2
FROM Prices
WHERE scenario_id='1' AND period_from='04/14/2014' AND period_to='04/14/2014'
AND date='04/14/2014' AND date_time='04/14/2014' price_type='r@periodic'
How to escape @ symbol in SQL WHERE Clause?
I got "Incorrect syntax near 'price_type' error.