テーブル名: archives
パラグラフ: Writer pubdate
データ形式: Zhang San 1384858337
Writer=著者名
pubdate=提出時刻
その日に Zhang San によって提出されたすべてのデータをリストし、SQL クエリを要求する必要があります発言。
注: タイムスタンプは純粋に数値であるため、タイムスタンプを %Y-%m-%d %h:%i の形式にする必要があるかどうかを検討してください。
select * from archives where date_format(FROM_UNIXTIME(pubdate),'%Y-%m-%d')=curdate() and writer='张三';
select * from archives where writer='张三' and pubdate between unix_timestamp(date(now)) and unix_timestamp(date(adddate(now(),1)));
select * from archives where writer='张三' and pubdate between unix_timestamp(date(now())) and unix_timestamp(date(adddate(now(),1)));