Compare two fields in Mysql
Simon | January 19, 2011To compare the content of two fields in mysql and print the matching results do the following:
select * from user where username=password;
This would match all users that have the same username and password
Share on Facebook





