All of a sudden instead of using standard SQL language when writing a query it started putting ' in a ridiculous amount of spots. How can I revert it back?
Before
select *
from companya.table1
where account_id = 'act_1346583702557040'
Now
select *
from `companya`.`table1` `companya_table1`
where (`companya_table1`.`account_id` = 'act_1346583702557040')