Sqlserver
 sql >> Teknologi Basis Data >  >> RDS >> Sqlserver

Urutan sebagai nilai default untuk kolom

Ternyata cukup mudah:

create table mytable (
    id      bigint not null constraint DF_mytblid default next value for mainseq,
    code    varchar(20) not null
)

atau jika tabel sudah dibuat:

alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id

(terima kasih Matt Strom atas koreksinya!)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Bagaimana melakukan UPDATE Pass-Through Query di SQL Server

  2. Bagaimana cara menggabungkan banyak baris dengan id yang sama di sql?

  3. Pelanggaran batasan KUNCI UNIK pada INSERT WHERE COUNT(*) =0 pada SQL Server 2005

  4. Bagaimana cara menghapus spasi yang tidak terputus dari kolom di server SQL?

  5. SQL LocalDB vs SQL Server CE