ChatGPT解决这个技术问题 Extra ChatGPT

What is the difference between varchar and varchar2 in Oracle?

What is the difference between varchar and varchar2?

What are the odds that this question was inspired by this blog post? joelonsoftware.com/articles/GuerrillaInterviewing3.html

M
MK.

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.


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: 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.
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: 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.
Sorry, it was actually @UnKnown who wrote the incorrect comment I was responding to. The fact that where x is NULL returns different results from where x = '' does not mean that NULL and '' are in any way different. The different behavior is due to the = operator.
b
bugybunny

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

Taken from: Difference Between CHAR, VARCHAR, VARCHAR2


@PhilipRego VARCHAR should not be used. I edited it
s
sandman

Taken from the latest stable Oracle production version 12.2: Data Types

The major difference is that VARCHAR2 is an internal data type and VARCHAR is an external data type. So we need to understand the difference between an internal and external data type...

Inside a database, values are stored in columns in tables. Internally, Oracle represents data in particular formats known as internal data types.

In general, OCI (Oracle Call Interface) applications do not work with internal data type representations of data, but with host language data types that are predefined by the language in which they are written. When data is transferred between an OCI client application and a database table, the OCI libraries convert the data between internal data types and external data types.

External types provide a convenience for the programmer by making it possible to work with host language types instead of proprietary data formats. OCI can perform a wide range of data type conversions when transferring data between an Oracle database and an OCI application. There are more OCI external data types than Oracle internal data types.

The VARCHAR2 data type is a variable-length string of characters with a maximum length of 4000 bytes. If the init.ora parameter max_string_size is default, the maximum length of a VARCHAR2 can be 4000 bytes. If the init.ora parameter max_string_size = extended, the maximum length of a VARCHAR2 can be 32767 bytes

The VARCHAR data type stores character strings of varying length. The first 2 bytes contain the length of the character string, and the remaining bytes contain the string. The specified length of the string in a bind or a define call must include the two length bytes, so the largest VARCHAR string that can be received or sent is 65533 bytes long, not 65535.

A quick test in a 12.2 database suggests that as an internal data type, Oracle still treats a VARCHAR as a pseudotype for VARCHAR2. It is NOT a SYNONYM which is an actual object type in Oracle.

SQL> select substr(banner,1,80) from v$version where rownum=1;
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production    

SQL> create table test (my_char varchar(20));
Table created.

SQL> desc test
Name                 Null?    Type
MY_CHAR                       VARCHAR2(20)

There are also some implications of VARCHAR for ProC/C++ Precompiler options. For programmers who are interested, the link is at: Pro*C/C++ Programmer's Guide


so does this mean that VARCHAR still treats '' == null?
Yes. The discussion of internal vs external types above is from the OCI reference. The 12.2 SQL Language Reference still carries the same 'do not use' statement it has always had for VARCHAR.
This is why I discussed the OCI differences, otherwise it's pretty much reserved for future usage or as they say 'variable length' which might be hinting at character sets such as multi-byte UTF8...
You showed that values declared as VARCHAR are stored in the database as VARCHAR2 however VARCHAR's max length (65533 bytes) is greater than VARCHAR2's max length (32767 bytes). How does database handle this?
IIRC, long ago (Maybe Oracle 6?) there was a VARCHAR type that misbehaved wrt to space padding - or was it truncating spaces? AAR, VARCHAR2 was the answer. Oracle has been saying they'll bring back VARCHAR but, I'm sure, there will be gnashing of teeth when the empty string IS NOT NULL.
S
Steve Chambers

After some experimentation (see below), I can confirm that as of September 2017, nothing has changed with regards to the functionality described in the accepted answer:-

Rextester demo for Oracle 11g: Empty strings are inserted as NULLs for both VARCHAR and VARCHAR2. LiveSQL demo for Oracle 12c: Same results.

The historical reason for these two keywords is explained well in an answer to a different question.


P
Palak Jain

VARCHAR can store up to 2000 bytes of characters while VARCHAR2 can store up to 4000 bytes of characters. If we declare datatype as VARCHAR then it will occupy space for NULL values. In the case of VARCHAR2 datatype, it will not occupy any space for NULL values. e.g., name varchar(10)

will reserve 6 bytes of memory even if the name is 'Ravi__', whereas

name varchar2(10) 

will reserve space according to the length of the input string. e.g., 4 bytes of memory for 'Ravi__'.

Here, _ represents NULL.

NOTE: varchar will reserve space for null values and varchar2 will not reserve any space for null values.


I think this answer is confusing VARCHAR with CHAR.
t
taras

Currently, they are the same. but previously

Somewhere on the net, I read that,

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.

Also,

Emp_name varchar(10) - if you enter value less than 10 digits then remaining space cannot be deleted. it used total of 10 spaces.

Emp_name varchar2(10) - if you enter value less than 10 digits then remaining space is automatically deleted


I stumbled upon this post recently, please note that it is incorrect. Execute the following and both fields will be 3 characters: create table deleteme_table(v varchar(10), v2 varchar2(10)); insert into deleteme_table (v, v2) values ('abc','abc'); select v, length(v), v2, length(v2) from deleteme_table;
@BrianLeach: Yes, they currently behave the same, but Oracle WILL change stuff in the future to behave like the standard says they should behave.