How to reset DEFAULT value on a column On ORACLE TABLE - sql

I have a table in which one of the column is set default to 0000 and the data type of of the column is number.
I want to remove the default value and when a record is saved null should save on this column.

You could override default to NULL:
ALTER TABLE tab_name MODIFY col_name DEFAULT NULL;
db<>fiddle demo
If columns was set as NOT NULL then:
ALTER TABLE tab_name MODIFY col_name type_name DEFAULT NULL NULL;
db<>fiddle demo2

First, update current records:
update tab set col=null where col=0;
Then remove default value:
alter tab modify col default null;

Related

Change data type of the attribute Roll-No of the table STUDENT from Number (10) to Varchar (10) [duplicate]

I want to change the data type of multiple columns from float to int. What is the simplest way to do this?
There is no data to worry about, yet.
http://dev.mysql.com/doc/refman/5.1/en/alter-table.html
ALTER TABLE tablename MODIFY columnname INTEGER;
This will change the datatype of given column
Depending on how many columns you wish to modify it might be best to generate a script, or use some kind of mysql client GUI
alter table table_name modify column_name int(5)
You can also use this:
ALTER TABLE [tablename] CHANGE [columnName] [columnName] DECIMAL (10,2)
If you want to change all columns of a certain type to another type, you can generate queries using a query like this:
select distinct concat('alter table ',
table_name,
' modify ',
column_name,
' <new datatype> ',
if(is_nullable = 'NO', ' NOT ', ''),
' NULL;')
from information_schema.columns
where table_schema = '<your database>'
and column_type = '<old datatype>';
For instance, if you want to change columns from tinyint(4) to bit(1), run it like this:
select distinct concat('alter table ',
table_name,
' modify ',
column_name,
' bit(1) ',
if(is_nullable = 'NO', ' NOT ', ''),
' NULL;')
from information_schema.columns
where table_schema = 'MyDatabase'
and column_type = 'tinyint(4)';
and get an output like this:
alter table table1 modify finished bit(1) NOT NULL;
alter table table2 modify canItBeTrue bit(1) NOT NULL;
alter table table3 modify canBeNull bit(1) NULL;
!! Does not keep unique constraints, but should be easily fixed with another if-parameter to concat. I'll leave it up to the reader to implement that if needed..
Alter TABLE `tableName` MODIFY COLUMN `ColumnName` datatype(length);
Ex :
Alter TABLE `tbl_users` MODIFY COLUMN `dup` VARCHAR(120);
To change column data type there are change
method and modify method
ALTER TABLE student_info CHANGE roll_no roll_no VARCHAR(255);
ALTER TABLE student_info MODIFY roll_no VARCHAR(255);
To change the field name also use the change method
ALTER TABLE student_info CHANGE roll_no identity_no VARCHAR(255);
You use the alter table ... change ... method, for example:
mysql> create table yar (id int);
Query OK, 0 rows affected (0.01 sec)
mysql> insert into yar values(5);
Query OK, 1 row affected (0.01 sec)
mysql> alter table yar change id id varchar(255);
Query OK, 1 row affected (0.03 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> desc yar;
+-------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+-------+
| id | varchar(255) | YES | | NULL | |
+-------+--------------+------+-----+---------+-------+
1 row in set (0.00 sec)
If you want to alter the column details, set default value and add a comment, use this
ALTER TABLE [table_name] MODIFY [column_name] [new data type]
DEFAULT [VALUE] COMMENT '[column comment]'
https://dev.mysql.com/doc/refman/8.0/en/alter-table.html
You can also set a default value for the column just add the DEFAULT keyword followed by the value.
ALTER TABLE [table_name] MODIFY [column_name] [NEW DATA TYPE] DEFAULT [VALUE];
This is also working for MariaDB (tested version 10.2)

Adding new column and set GETDATE as value in SQL Server 2017

This is my query:
alter table reseau add datemodification datetime default getdate()
After execution the rows have NULL as their value but I want them set to the current value of GETDATE().
How can do I do this?
DEFAULT is a CONSTRAINT that sets the value of a column when you omit it when performing an INSERT. If you want to then want to create a column with a DEFAULT value, and populate it at the point it with said DEFAULT value at the point of creating it then add WITH VALUES at the end of the statement:
CREATE TABLE dbo.test (ID int);
INSERT INTO dbo.Test VALUES (1),(2),(3),(4),(5);
GO
ALTER TABLE dbo.Test ADD D datetime DEFAULT GETDATE() WITH VALUES;
GO
SELECT *
FROM dbo.Test;
GO
DROP TABLE dbo.Test;
db<>fiddle
If you want to update existing values after adding the column, then use update:
update reseau
set datemodification = getdate();
The default takes effect for new rows.
Alternatively, you can define the column to be not null:
alter table reseau add datemodification not null datetime default getdate();
Then the existing rows will use the default value.
Here is a db<>fiddle, illustrating the two methods.

Delete Data from Non-Nullable Column in SQL

Question: I have table with three column, with column names APP_NAME, APP_TYPE and VALUE_TIME.
I would like to edit VALUE_TIME for particular APP_NAME and APP_TYPE. So my query should look like below mentioned if VALUE_TIME column is Nullable. So what would be the best way to delete the data for particular condition ?
UPDATE TABLE_NAME
SET VALUE_TIME = null
WHERE APP_NAME = 'XYZ'
AND APP_TYPE = 'TEST';
Thanks
If you want to delete the row:
DELETE TABLE_NAME WHERE APP_NAME = 'XYZ' AND APP_TYPE = 'TEST';
The column VALUE_TYPE is defined as NOT NULL, so you can't set it to null. You could alter the table to make it nullable:
ALTER TABLE TABLE_NAME MODIFY VALUE_TYPE VARCHAR2(500) NULL;
And then run the UPDATE statement in your question.
Hopefully this answers your question - it wasn't clear what you want to do exactly.
Simple Answer, You can't update non-nullable column data to NULL or ' ' in oracle. I could only think of is Alter the column to have null.
ALTER
TABLE TABLE_NAME
MODIFY VALUE_TYPE VARCHAR2(500) NULL

Modify default option of a column

I am trying to change the default value of 2 columns from 'N' to 'Y' using the below query, but it throws a error. Any idea whats wrong in here. Error: Invalid Alter table option.
Alter Table USER
Modify
CONTACT_FLAG Default 'Y',
APPROVAL_FLAG Default 'Y' ;
You have to enclose the columns like this
alter table
table_name
modify
(
column1_name column1_datatype,
column2_name column2_datatype,
column3_name column3_datatype,
column4_name column4_datatype
);

How to update a column with a "blank" value

How do I update a column value (varchar(20), not null) with a "blank" value?
If you want to update it with NULL you will need to change it to allow NULL. Otherwise update with an empty string "".
Update TableName Set ColumnName='' where [Condtion] // To update column with an enpty values
If there have any int column which you may want to do null
Update TABLE_NAME set name = '',id = cast(NULLIF(id,'') as NVARCHAR)