Office中国论坛/Access中国论坛

标题: 在insert into中使用逻辑型数据的问题 [打印本页]

作者: 大飞    时间: 2002-9-6 18:38
标题: 在insert into中使用逻辑型数据的问题
有数据源表wordlist,字段为
tno (Lont Integer)
word  (Text)
passtimes (Long Integer)

目标数据表temp,字段为
tno (Long Integer)
word (Text)
readed (True/False)

我想从wordlist向temp添加数据,tno和word照搬,当passtimes大于5时在temp的readed字段填上True,否则填上False 。

我试图用insert into temp select tno,word,(passtimes>5) from wordlist ,但出错了。

请教一下这类的添加查询该怎么写?

作者: 李啸林    时间: 2002-9-6 21:53
试试如下语句:
insert into temp select tno,word,yes from wordlist where passtimes>5

insert into temp select tno,word,no from wordlist where passtimes>5







欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3