I am trying to create a user without any password by using queries-
create user abc;
create user 'abc'@'localhost';
but neither of them works. It is given on oracle docs that it is valid to create user with no password by including no IDENTIFIED BY clause.
Please help me with this query.