91在线免费公开视频,成人国成人国产SUV,一区二区三区在线亚洲,欧美中文字幕在线二区,蜜乳av一区二区蜜臀,亚洲自偷精品视频自拍,中文字幕日韩一区二区不卡,日本三级香港三级人妇gg在线
File:cn/goods2.htm
Method:query.table(columns,*where,*order,*top)
關鍵字 'and' 附近有語法錯誤。
select top 10 * FROM cocontent WHERE Status>0 and and TagIds like '%,3,%' ORDER BY Grade desc,Modified desc,ContentId desc
數據庫執行錯誤
cn/xmls/goodsss.xmls
...
$sub SelectSDS(){
@TableDownload=$query(msds,download);
@TableDownload[GoodsCode]=@GoodsCode;
@FileName=@TableDownload.scalar(FileName,['{*GoodsCode =} and AreaId=1']);
$if(@FileName){
@texten=$file.readText($file.getMapPath(@FileName));
$return(@texten);
}
$write($empty);
}
//查詢產品en SDS
$sub SelectEnSDS(){
@TableDownload=$query(msds,download);
@TableDownload[GoodsCode]=@GoodsCode;
@FileName=@TableDownload.scalar(FileName,['{*GoodsCode =} and AreaId=2']);
$write.out(@FileName,1);
$if(@FileName){
@texten=$file.readText($file.getMapPath(@FileName));
$return(@texten);
}
$write($empty);
}
//新聞
$sub glistNews(format,tagIds){
@row=$map();
@call=$call(xmls/public.xmls);
@call.load();
@querynew=$query(content,content);
@tagId=[",{@tagIds},"];
@querynew[TagIds]=@tagId;
@listnews=@querynew.table( *,['Status>0 and {*AreaId = $shell[AreaId]} and {*TagIds like }'],['Grade desc,Modified desc,ContentId desc'],10);
@contentlist=@listnews.format(@format);
$if(@...