02
Sep
Learn datetime vs timestamp in mysql
Q: What would you recommend using between a datetime and a timestamp field in mysql, and why? A: Generally Timestamps in MySQL used to track changes to records, and are updated every time the record is changed. If you want to store a specific value you should use a datetime field. If you meant that […]
Continue Reading →