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.
如果我有一个名为“月”的列包含实际月份名称的字符串表示,我如何选择下个月的记录?
SELECT * FROM minutes WHERE year = YEAR(CURDATE()) AND month =
明白了,没关系:
SELECT * FROM minutes WHERE year = YEAR(CURDATE()) AND month = MONTHNAME(now() + INTERVAL 1 MONTH)