摘要:
INSTR于sqlserver 的charindex参数相反 GROUP BY 分组去重 SELECT ugrid, ugid,userid,username,face,ctid FROM ct_usergrouprelation where INSTR(strsql,ugid)>0 GROUP B 阅读全文
摘要:
添加前缀update `ecs_goods` set goods_name=concat('新中式',goods_name) where cat_id =4; 添加后缀update `ecs_goods` set goods_name=concat(goods_name,'新中式') where c 阅读全文
摘要:
方法一: //判断文件是否存在 function IsExstsFile(filespec) { var fso = new ActiveXObject("Scripting.FileSystemObject"); if (fso.FileExists(filespec)) return true; 阅读全文
摘要:
当单击按键时触发事件 document.onkeydown = function (e) { e = e || event; if (e.keyCode == 13) { //判断是否单击的enter按键(回车键) document.getElementByIdx_x_x("txtid").clic 阅读全文