Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば(2013-06-03 22:00:00)、 というテーブルに格納しましたLog。
(2013-06-03 22:00:00)
Log
更新された出力が (2013-06-03 07:30:00) のようになり、時間、分、秒のみが変更されます。
時刻だけを更新するにはどうすればよいですか?
PHP のバージョンは 5.3 です
mysql では:
update your_table set your_field=concat(date(your_field),' 07:30:00');