Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、TOADで次のクエリを使用しています。
DEFINE @name char(6); SET @name = 'Ronie'+'%'; select * from employee where name like @name;
TOADforOracleを使用している「欠落した表現」を示しています。
これがうまくいくことを願っています
DEFINE NAME = "Ronie%" (CHAR); select * from employee where name like '&&name';
多分問題はここにあります:そうではありません'Ronie'+'%'が'Ronie'||'%'
'Ronie'+'%'
'Ronie'||'%'