John uses CHARACTER VARYING in the places where I use VARCHAR.
I am a beginner, while he is an expert.
This suggests me that there is something which I do not know.
What is the difference between CHARACTER VARYING and VARCHAR in PostgreSQL?
|
John uses What is the difference between CHARACTER VARYING and VARCHAR in PostgreSQL?
| ||||
feedback
|
|
Varying is an alias for varchar, so no difference, see documentation :)
| |||
|
feedback
|
|
The PostgreSQL documentation on Character Types is a good reference for this. They are two different names for the same type. | |||
|
feedback
|