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

Seperti apa sintaks Alter Table untuk menambahkan kolom DATETIME?

Jika Anda ragu, sintaksnya dijelaskan di sinihttp://dev.mysql.com/doc/refman/5.5/en/alter-table.html

ALTER TABLE yourTable 
  ADD COLUMN new_date DATETIME NOT NULL DEFAULT 20110126143000 AFTER preceding_col

atau

ALTER TABLE yourTable 
  ADD COLUMN new_date DATETIME NOT NULL DEFAULT '2011-01-26 14:30:00' AFTER preceding_col

(Saya lebih suka format DATETIME numerik)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Pembaruan Tampilan Otomatis di MySql

  2. nama database variabel

  3. PHP mengubah koma menjadi <br />

  4. Kesalahan MySQL 1241:Operan harus berisi 1 kolom

  5. Apa cara terbaik untuk menghapus nilai duplikat dari Tabel MySQL?