Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between varchar and varchar2?

share|improve this question

4 Answers

up vote 27 down vote accepted

As for now, they are synonyms.

VARCHAR is reserved by Oracle to support distinction between NULL and empty string in future, as ANSI standard prescribes.

VARCHAR2 does not distinguish between a NULL and empty string, and never will.

If you rely on empty string and NULL being the same thing, you should use VARCHAR2.

share|improve this answer
2  
Hadn't heard that rationale before, that's useful. Thanks. For the record, it is still totally ridiculous that the main character type in Oracle is "varchar2". Doesn't that strike anybody else as a terrible kludge? Seems like how I would have solved some problem in my first week of learning to program. – Ian Varley May 31 '10 at 15:14
@Ian: main type is VARCHAR2 because currently there is no type that behaves like VARCHAR should. In fact, you should not use VARCHAR at all until it's implemented properly. – Quassnoi May 31 '10 at 15:28
Thanks, @Quassnoi. So I guess the stupid part is that Oracle doesn't have a proper VARCHAR like every other database, then? There's something stupid going on here, I'm sure of it ... :) – Ian Varley Jun 1 '10 at 17:48
@Ian: when Oracle was being developed, there were no standards. By the time the standards emerged it already had a burden of legacy apps. We all know how it happens. – Quassnoi Jun 1 '10 at 18:30
Yeah, I've been there. :) – Ian Varley Jun 1 '10 at 19:55

Currently VARCHAR behaves exactly the same as VARCHAR2. However, this type should not be used as it is reserved for future usage.

Taken from: Difference Between CHAR, VARCHAR, VARCHAR2

share|improve this answer
thx this is what iam searching :) – Kites Dec 3 '12 at 6:36

For now, they are exactly the same. It's a pre-reserved variable that may be used later in the future.

share|improve this answer
VARCHAR being the pre-reserved variable, correct? So it is best to use VARCHAR2. – Mark Norgren Oct 29 '10 at 18:36

Main difference between Varchar and Varchar2 is Varchar2 allocates memory dynamically.

ex: when you declare Varchar(100) then at the initialization stage it reserves 100 units from your memory. but when you declare Varchar(100) and put a String with length 20 characters it takes only 20 units from your memory. and will grow as the string grows.

this is the key point for using Varchar2 for most of the database designs.

share|improve this answer
[citation needed] – ggiroux Oct 3 '12 at 0:18
1  
It would seem you are wrong Dinuka. – Andrew Barber Oct 3 '12 at 15:44
This link will provide more detailed description regarding that matter @AndrewBarber :) – Dinuka Nov 8 '12 at 8:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.