If I do
INSERT INTO table1 (datetime1, datetime2) VALUES (NOW(),NOW())
Will the two fields always be identical in both columns?
Ditto for
INSERT INTO table1 (datetime1, datetime2) VALUES (NOW(),NOW())
,(NOW(),NOW())
Will all four database entries have the same value, or is it possible that row1 <> row2?
Note this is a theoretical question rather than a work-around
question.
I just really want to know the how and why.