You can use binary datatype, it will not directly show you the value.
You can use cast function while inserting text and retreving binary value.
Syntax.
insert into table1 (uid,pwd) values('emp1',cast('mypwd' as binary))
select uid, cast(pwd as varchar)as pwd from table1
urt
|