我在数据库上有表:id、mark、date。
日期格式如下:DD.MM.YYYY (DD: 01-31, MM: 01-12, YYYY: 0000-9999)
我需要在 php 上编写查询 Mysql,该删除行在记录和当前时间之间存在超过 7 天的差异。像这样:
mysql_connect($this->hostname, $this->username, $this->password) OR die('Could not select database.');
mysql_select_db($this->dbName) or die(mysql_error());
$query = "delete from result where date-".date('d.m.Y')">7";//?
mysql_query($query) or die(mysql_error());
如何编写正确的查询?