Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set minimum value for a SQL Server column

Tags:

sql-server

I am using SQL Server 2008 R2

I want to set a column minimum value

Column type is int

I want to set minimum value of 0

So if I update the column with -32 it should automatically set column value to 0

like image 499
MonsterMMORPG Avatar asked Jan 25 '26 08:01

MonsterMMORPG


1 Answers

The simplest solution is to force the calling code to correct their data rather than magically alter it on insert. To do that, add a check constraint:

Alter Table MyTable
    Add Constraint CK_MyTable_Col Check ( MyCol >= 0 )
like image 119
Thomas Avatar answered Jan 27 '26 01:01

Thomas



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!