1.
Is there a way to encrpt data (ie. a credit card number or personal information) and then retrieve it from the database later using a SELECT Statement. I am trying to get away from:
Insert into saiddatabase values password(something);
select * from saiddatabase where creditcardnum = password(something);
Any suggestions?
2.
I want to be able to verify the date entered is a valid date.
Any suggestions?
Thank you.