Sir I have table in table IsActive column, I want to Set default value is zero or false how to set
hi @band.atul,
try this..
ALTER TABLE [dbo].[Customers_Transactions] ADD CONSTRAINT [DF_Customers_Transactions_Debit] DEFAULT ((0)) FOR [IsActive]
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.