• N_Muller (4/18/2014)


    What would be the expected behavior had the tables been defined with varchar(9) and varchar(10), instead of char(9) and char(10)?

    Hi N_Muller,

    If I understood the article correctly, the reason why a table scan has been performed is because one table has been declare as char(9) and the other on with char(10). I expected a table scan as well with varchar(9) and varchar(10) until both columns have been declared as varchar(10).