hi,
i have a table user_info with column user_pass.
here's my insert query:
" insert into user_info (user_id, user_pass) values ('steve', password('test')) "
it inserts fine.
i can't select
" select * from user_info where user_id = 'steve' and user_pass = password('test') "
where's the mistake?
thanks,
steve