Mysql
 sql >> Database >  >> RDS >> Mysql

Google Apps Script, JDBC e MySQL non funzionano con la data 0000-00-00

Purtroppo non senza alterare SQL. Ma per riferimento questo è il modo per alterare l'SQL:

Ho usato questo consiglio:Come convertire timestamp a datetime in MySQL? . E usa il FROM_UNIXTIME() funzione in MySql. L'unico inconveniente era che una data 0000-00-00 verrà importata nel foglio di lavoro come 1970-01-01 00:00:00.0 Per me però questo non è un problema al momento.

Esempio:

var rs = stmt.executeQuery("SELECT `Subscriptions`.`SubscriptionId`,
  `Subscriptions`.`ItemId`, `Subscriptions`.`AccountId`,
  `Subscriptions`.`ContactId`,
  from_unixtime( unix_timestamp(TIMESTAMP( `Subscriptions`.`DateStart` ) ) ),
  from_unixtime( unix_timestamp(TIMESTAMP( `Subscriptions`.`DateEnd` ) ) ),
  `Subscriptions`.`AutoRenewal`,`Subscriptions`.`Invoice` from `Subscriptions`")