Postgresql – Why the result is different for SQL string equality and for LIKE operator in Postresql?
I have a table with login names. Login names does not contain any special character just [a-zA-Z0-9] and of type varchar(50). I would like to find a user by login name eg.: CREATE TABLE users( login character varying(50) ); INSERT…