in SQL command '&'
راهله شاکری | دوشنبه, ۲۲ شهریور ۱۴۰۰، ۱۱:۴۴ ق.ظ |
۰ نظر
برای حل مشکل '&' در کوئری های خود میتوانید به روشهای زیر عمل کنید:
Primary Query:
update b.otp a set a.token_type='s&online&offline' where a.user_id='7070';
In SQL*Plus:
SQL> set define off;
SQL> update b.otp a set a.token_type='s&online&offline' where a.user_id='7070';
In Toad:
update b.otp a set a.token_type='s&'||'online&'||'offline' where a.user_id='7070';
- ۰۰/۰۶/۲۲