VisualFoxpro 中显示满足条件的记录有哪几种方法?

2024-11-06 10:52:00
推荐回答(1个)
回答1:

例:显示“学籍” 表中性别为男的记录

use 学籍
list for 性别="男"


use 学籍
display for 性别="男"


use 学籍
browse for 性别="男"


select * from 学籍 where 性别="男"