In MSSQL it is possible to, when creating a database tables from file, to set a default value for a column through a function call. F.E.:
create table tbl.....(
..
CDATE DATE NOT NULL DEFAULT GETDATE(),
..
)
Why is this not possible within MYSQL?
I used:
CREATE TABLE tbl.. (
..
CDATE DATE...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.