Im quite new in mysql
I have inserted values into my table customer
INSERT INTO customer(f_name, l_name, mobilehp, username, password)
VALUES
('Ahmad', 'Ali', '013-5404997', 'A_Ali', SHA('something'));
Then I inserted a condition,
select customer_id, f_name FROM customer WHERE password=SHA('something');
However the query returned empty set which is weird when it supposed to display customer_id and f_name. So any help would be greatly appreciated. Thanks