YMLib Systems Librarian

一些設定的記錄

我的相片
名稱:
位置: WuGu, Taipei, Taiwan

我是個大光頭,因我的頭型適合這一型。I have a perfect head style.

星期二, 9月 19, 2006

mysql中顯示幾日內的記錄

回傳公元0年到今日的總日數:
mysql>select to_days(now(0));

回傳公元0年到前三天的總日數:
mysql>select to_days(now()) - 3;

$sql="select * from books where to_days(dateandtime) >= (to_days(now()) - 3)