Home > Database > Mysql Tutorial > body text

Oracle字段类型设计与实际业务不符引发的问题

WBOY
Release: 2016-06-07 16:44:04
Original
953 people have browsed it

在Oracle表的设计过程中,开发人员总是对字段的类型不以为然,下面来演示一个例子,按照应该设计为number的,结果设计成了varcha

在Oracle表的设计过程中,开发人员总是对字段的类型不以为然,下面来演示一个例子,按照应该设计为number的,结果设计成了varchar2,那会导致什么问题呢?下面我们来做一个实验。

SQL> create table test(id varchar2(10));

表已创建。
SQL> declare
  2    i number;
  3  begin
  4    for i in 1..100 loop
  5    insert into test values(i);
  6    end loop;
  7  end;
  8  /

PL/SQL 过程已成功完成。

SQL> commit;

提交完成。
SQL> select count(*) from test where id ----猜猜是多少,难道不是8?

  COUNT(*)
----------
        89

SQL> select count(*) from test where id

  COUNT(*)
----------
        11

SQL> select * from test where id

ID
----------
1
10
11
12
13
14
15
16
17
18
100

已选择11行。

总结:Oracle比较字符串是根据ASCII码来的,,第一个字母的ASCII大小比较如果相等再比较下一个,类推。

更多详情见请继续阅读下一页的精彩内容:

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template