For these 2 types of const pointers, what is the difference between them?

const int * pData2; and

int * const pData3;

?