1
I am inserting more than 9000 records via query, but CURRENT_TIMESTAMP() -3 is inserting several fields with 0000-00-00 00:00:00. Is there any way to avoid it?
INSERT INTO yourls.yourls_url (keyword, url, title, timestamp, ip, clicks) VALUES
('teste', 'meusite.com/teste.htm';, 'Testando o encurtador', CURRENT_TIMESTAMP() -3, '198.xx.xxx.xxx', '');
You can enter the Insert code?
– rray
INSERT INTO
yourls
.yourls_url
(keyword
,url
,title
,timestamp
,ip
,clicks
) VALUES ('test', 'http://www.meusite.com/teste.htm', 'Testing the shortener', CURRENT_TIMESTAMP() -3, '198.xx.xxx.xxx', '');– rafaeloliveira