日付が入っているカラムで、一ヶ月前までのデータを抽出する
$today = date(“Y-m-d”);
$onemonthago = date(“Y-m-d”,strtotime(“-1 month”));
$sql = “select colum_A, colum_B from tbl_A where colum_C between ‘” . $onemonthago . “‘ and ‘” . $today . “‘”;
日付が入っているカラムで、一ヶ月前までのデータを抽出する
$today = date(“Y-m-d”);
$onemonthago = date(“Y-m-d”,strtotime(“-1 month”));
$sql = “select colum_A, colum_B from tbl_A where colum_C between ‘” . $onemonthago . “‘ and ‘” . $today . “‘”;
コメントを残す