- 論壇徽章:
- 0
|
create table bin
(
f_char char(10) null,
f_varchar varchar(20) null,
f_numeric numeric(12, 2) null,
f_date date null,
f_timestamp timestamp null
);
insert into bin values('a1', 'b1', 13.03, date('2007-07-25'), current timestamp);
insert into bin values('a2', 'b2', 32.98, date('2007-07-26'), current timestamp);
insert into bin values('a3', null, null, date('2007-07-27'), null);
insert into bin values(null, 'b4', null, null, current timestamp);
附件是用數(shù)據(jù)庫自己的工具導(dǎo)出的二進(jìn)制數(shù)據(jù) |
-
-
bin.rar
2007-09-18 13:54 上傳
點(diǎn)擊文件名下載附件
220 Bytes, 下載次數(shù): 31
|