Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从表中得到数据。表中有一个datetime字段。字段名称是createdon
datetime
createdon
在选择查询中,我传递了两个日期时间参数现在我想要createdon字段不等于这两个日期时间参数的表中的所有数据。
字面解释。
SELECT * FROM TBL WHERE createdon NOT IN (@date1, @date2);
我在我的页面中使用。一旦用户选择了日期,我想关闭日历弹出窗口。现在它不会那样发生。选择日期后,用户需要单击网页的其他一些地方来关闭弹出窗口。然后它才会关闭。我不知道这是否是 chrome 的默认功能。所以请任何人建议我如何关闭弹出窗口。
提前致谢。