在VFP里SELE 是什么命令?

在VFP里SELE 是什么命令?,第1张

两个用法

第一种:选择工作区,用于同时在不同工作区打开多个表,比如

选择5工作区:sele 5

选择最前面的闲置区:sele 0

定位已打开的表区:sele 别名

第二种:SQL语句同

比如读取数据库:sele * from 表 into dbf 新表

就这些吧,详细你看书把

sele students 这条指令 的执行,先决条件是 students 这个表已经在某个工作区打开,如果在所有的工作区里都没有打开一个 “别名” 为 students 的表,系统就提示 “找不到别名XXXX”。

*************************************************建议使用如下代码:

if not used('students')&&检查 students 是否已打开

use students in 0&&注意 in 0 参数 意为 在一个新工作区打开,不会关闭任何表。

endif&&这样的代码,可让初学者避免 “工作区管理混乱”

sele students

两种办法:zd

1、在中文专字符串前加N,如下:

string sele1 = "select count(RoomId) from roomStatus where Status=N'"+word1+"'"

string sele2 = "select count(RoomId) from roomStatus where Status=N'" + word2 + "'"

2、换属用like

string sele1 = "select count(RoomId) from roomStatus where Status like '%"+word1+"%'"

string sele2 = "select count(RoomId) from roomStatus where Status like '%" + word2 + "%'"


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9973843.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存