Can anyone tell me will there be any impact on changing the datatype of a column from char to varchar2
.
Because the issue i am facing is when i fire a select query i.e
select * from table_name where column_name in ('X','Y','Z');
The above query is returning only few rows. And recently the column_name
data type was changed from char to varchar
. The rows returned are the rows after the data type was changed.