Learner
Learner

Reputation: 281

How to avoid & popup when SQL query contain '&' letter?

I am writing a migration script where I replaced html encoded values by original values like & will get replaced by &. So my SQL query has & letter but when I execute this query it give me popup for every & to replace that character which is as shown below

enter image description here

After clicking on OK its giving anexpecetd result but actually this popup should not come for every &. What should have to do to avoid this popup?

Upvotes: 0

Views: 602

Answers (1)

Junjie
Junjie

Reputation: 521

At the top of your script, add:

set define off;

Upvotes: 2

Related Questions