sql - Is it practical to normalize timestamps in MYSQL? -


if have click data on server expects more 1 click per second, practical normalize timestamps?

basically, this:

create table clicks( id int(6) unsigned auto_increment primary key, timestamp timestamp null ) 

vs

create table clicks( id int(6) unsigned auto_increment primary key, timestamp_id int(6) unsigned null ) create table timestamps( id int(6) unsigned auto_increment primary key, timestamp timestamp  null ) 

no, not @ all. time split stuff out table if there piece of data associated want save itself. not case here, , timestamp not going reused.


Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -