任性翅膀

文章
4
资源
0
加入时间
3年0月20天

mysql查询中的条件与匹配

select * from user where password like '%1' and id=2-- SELECT * FROM user WHERE password LIKE '%1' AND id=2语句意思为查询user表中所有列里满足条件password结尾为1并且id等于二的数据其中where子句和like子句有蛮多可操作空间,where是在sql中指定条件的子句,可以使用and或or指定一个或多个条件select * from user where id=1 and sta

测试鼠标是否在窗口内,以及鼠标的离开

以下给出两种跟踪鼠标是否在窗口内的方法一、使用SetCapture(),OnMouseMove()等判断鼠标位置void CMyDlg::OnMouseMove(UINTnFlags,CPointpoint){CRect rect; GetClientRect(&rect); if(!rect.PtInRect(point)) {  strWnd =