1. SQL> create table testtype(v1 varchar(10), c1 char(10), n1 number(10));
2. 表已创建。
3.
4. SQL> insert into testtype values('12345','12345',12345);
5. 已创建 1 行。
艾米莉布朗宁
6.
7. SQL> insert into testtype values('1234567890','1234567890',1234567890);
8. 已创建 1 行。
9.
10. SQL> insert into testtype values('A123','A123',NULL);
11. 已创建 1 行。
12.
13. SQL> col dn1 for a60
14. SQL> col dc1 for a60
15. SQL> col dv1 for a60
16. SQL> select v1,dump(v1)dv1 from testtype;
17. V1         DV1
18. ---------- ------------------------------------------------------------
19. 12345      Typ=1 Len=5: 49,50,51,52,53
20. 1234567890 Typ=1 Len=10: 49,50,51,52,53,54,55,56,57,48
21. A123      Typ=1 Len=4: 65,49,50,51
22. --char型是后填补空格保存
23. SQL> select c1,dump(c1)dv1 from testtype;
24. C1         DV1
25. ---------- ------------------------------------------------------------
26. 2021清明祭英烈留言12345      Typ=96 Len=10: 49,50,51,52,53,32,32,32,32,32
27. 1234567890 Typ=96 Len=10: 49,50,51,52,53,54,55,56,57,48
28. A123      Typ=96 Len=10: 65,49,50,51,32,32,32,32,32,32
29. --在保存数字时,number型最省空间
30. SQL> select n1,dump(n1)dv1 from testtype;
31.         N1 DV1
32. ---------- ------------------------------------------------------------
33.      12345 Typ=2 Len=4: 195,2,24,46
34. 1234567890 Typ=2 Len=6: 197,13,35,57,79,91
35. 真空干燥箱使用方法           NULL
36.
37. SQL> select * from testtype where v1='12345';龚叶轩不雅照
38. V1         C1                 N1
39. ---------- ---------- ----------
40. 12345      12345           12345
41. --Oracle自动填补空格,然后比较
42. SQL> select * from testtype where c1='12345';
43. V1         C1                 N1
44. ---------- ---------- ----------
45. 12345      12345           12345
46.
47. SQL> select * from testtype where c1='A123';
48. V1         C1                 N1
49. ---------- ---------- ----------
50. A123      A123
51. SQL> insert into testtype values('A123 ','A123 ',NULL);
52. 已创建 1 行。
53.
54. SQL> select * from testtype where c1='A123 ';
55. V1         C1                 N1
56. ---------- ---------- ----------
57. A123      A123
58. A123      A123
59. --varchar薄荷油多少钱一斤A123A123 是不同的值
60. 世界上最小的猫SQL> select * from testtype where v1='A123 ';
61. V1         C1                 N1
62. ---------- ---------- ----------
63. A123      A123
本文摘自123怀孕网  www.123huaiyun