Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

sql drop default

Removes a default value for a column.
Example (MySQL): Removes the default value from the ‘name’ column in
the ‘products’ table.
ALTER TABLE products
ALTER COLUMN name DROP DEFAULT;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sql #drop #default
ADD COMMENT
Topic
Name
7+7 =