今天学习,考考大家!
在VFP9.0中create table t1(id int,score n(5,2))
insert into t1(id,score) values(1,12345)
insert into t1(id,score) values(2,123.45)
insert into t1(id,score) values(3,12.34)
在SQL2000中
create table t2(id int,score numeric(5,2))
insert into t2(id,score) values(1,12345)
insert into t2(id,score) values(2,123.45)
insert into t2(id,score) values(3,12.34)
请问,现在2个表 t1 和 t2的数据结果是什么?即
select * from t1
select * from t2