Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Mengubah kolom mysql dari INT ke TIMESTAMP

Anda hampir sampai, gunakan FROM_UNIXTIME() daripada langsung menyalin nilainya.

-- creating new column of TIMESTAMP type
ALTER TABLE `pm`
  ADD COLUMN `date_sent2` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP();

-- Use FROM_UNIXTIME() to convert from the INT timestamp to a proper datetime type
-- assigning value from old INT column to it, in hope that it will be recognized as timestamp
UPDATE `pm` SET `date_sent2` = FROM_UNIXTIME(`date_sent`);

-- dropping the old INT column
ALTER TABLE `pm` DROP COLUMN `date_sent`;

-- changing the name of the column
ALTER TABLE `pm` CHANGE `date_sent2` `date_sent` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP();


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mensimulasikan MySql OLD_PASSWORD di .NET atau MS SQL?

  2. Tentukan nilai kunci utama secara manual di kolom JPA @GeneratedValue

  3. MySQL FULLTEXT tidak akan berfungsi dengan lebih dari satu bidang

  4. Injeksi SQL yang Berhasil meskipun Kutipan Ajaib PHP

  5. Qt - Bagaimana cara mendapatkan|kompilasi driver Mysql