ターミナル上で、sqlに直接指示を与えると予期しているデータが返ってきます。
linux
1select * from schedule where id = 9 and start_time > '2020-3-1' and start_time < '2020-3-1 23:00';
しかし、これをコピーしてphpのpdoのプリステ文に代入すると何も返ってきません。
php
1$pdo->prepare("select * from schedule where id = 9 and start_time > '2020-3-1' and start_time < '2020-3-1 23:00'");
全く理由がわかりません。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー