“SQL -Spalte mit Standardwert hinzufügen” Code-Antworten

Fügen Sie die Spalte Tabelle SQL Standardwert hinzu

ALTER TABLE users
ADD visit_number INT DEFAULT 0;
Cerbrain

TABLE TABLE -Spalte mit Standardwert hinzufügen

ALTER TABLE Protocols
ADD ProtocolTypeID int NOT NULL DEFAULT(1)
Jittery Jaguar

Fügen Sie eine Spalte mit einem Standardwert zu einer vorhandenen Tabelle in SQL Server hinzu

ALTER TABLE {TABLENAME} 
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL} 
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}
WITH VALUES
Important Ibis

Fügen Sie Spalte Alter Tabelle Standardwert hinzu

ALTER TABLE PERSON
ADD IS_ACTIVE VARCHAR2(1) DEFAULT 'N' NOT NULL
Prasanth PPS

Ändern Sie die Spalte, um nicht mit dem Standardwert SQL Server zu null

ALTER TABLE SomeTable
        ADD SomeCol Bit NULL --Or NOT NULL.
 CONSTRAINT D_SomeTable_SomeCol --When Omitted a Default-Constraint Name is autogenerated.
    DEFAULT (0)--Optional Default-Constraint.
WITH VALUES --Add if Column is Nullable and you want the Default Value for Existing Records.
Grumpy Gibbon

SQL -Spalte mit Standardwert hinzufügen

ALTER TABLE {TABLENAME} 
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL} 
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}
WITH VALUES

example 

ALTER TABLE SomeTable
        ADD SomeCol Bit NULL --Or NOT NULL.
 CONSTRAINT D_SomeTable_SomeCol --When Omitted a Default-Constraint Name is autogenerated.
    DEFAULT (0)--Optional Default-Constraint.
WITH VALUES --Add if Column is Nullable and you want the Default Value for Existing Records.
Shalitha

Ähnliche Antworten wie “SQL -Spalte mit Standardwert hinzufügen”

Fragen ähnlich wie “SQL -Spalte mit Standardwert hinzufügen”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen