Subject | Re: [firebird-support] Strange string issue |
---|---|
Author | Ivan Prenosil |
Post date | 2004-02-11T21:52:11Z |
> why does thisIt is standard behaviour of '=' operator.
> select * from event where room_name =
> 'A Test Room ';
>
> return the same as this
>
> select * from subevent where room_name =
> 'A Test Room';
To take trailing spaces into account use LIKE operator:
select * from event where room_name LIKE
'A Test Room ';
Ivan