Two different SELECT sql statement don't behave the same way. The below sql statement produces the right output SELECT nickname, password FROM password WHERE id='0938105618107N1'; nickname | password -------------+---------- Piccard@@21 | Arbol (1 row) However, if this sql statement produces the wrong output SELECT nickname, password FROM password WHERE nickname='Arbol'; nickname | password ----------+---------- (0 rows) What am I doing wrong?
- Wired behaviour from SELECT Arbol One
- Re: Wired behaviour from SELECT David G. Johnston
- Re: Wired behaviour from SELECT David Mullineux
- Re: Wired behaviour from SELECT Arbol One
- Re: Wired behaviour from SELECT Ron Johnson
- Re: Wired behaviour from SELECT Arbol One