How to insert encrypted password in oracle sql
996004Mar 27 2013 — edited Mar 27 2013INSERT INTO USERL VALUES('name',(SELECT password('password')),1);
When I run this query I got "FROM keyword not found where expected" error.. How can I insert encrypted password with this query.
Thanks in Advance!