选择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
两种办法:zd1、在中文专字符串前加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 + "%'"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)