Collections:
What Is TIMESTAMP Data Type in MySQL
What Is TIMESTAMP Data Type in MySQL?
✍: FYIcenter.com
A TIMESTAMP data type allows you to record a date and time like DATETIME data type. But it has some interesting features when used on a table column:
The tutorial exercise below provides you 2 equivalent ways to create a TIMESTAMP column:
CREATE TABLE links (lastDate TIMESTAMP); CREATE TABLE links (lastDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP);
⇒ Ways to Get the Current Time in MySQL
⇐ Date and Time Functions in MySQL
2018-03-13, 3190🔥, 0💬
Popular Posts:
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
How To Concatenate Two Character Strings Together in SQL Server Transact-SQL? Concatenating two char...
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
How to print value on console in SQL Server Transact-SQL? How to use the PRINT statements? In Transa...