Hi all i wanna change starting kills to 0 but i put 0 and i close the tables and he back again 120k how to i save TY.
UPDATE PS_GameData.dbo.Chars SET k1=0
UPDATE PS_GameData.dbo.Chars
SET k1=0
WHERE CharName IN ('Name1', 'Name2', 'Name3')
--Removes the default of 120k kills
ALTER TABLE [PS_GameData].[dbo].[Chars]
DROP CONSTRAINT DF_Chars_K1;
--Adds the default of 0 kills
ALTER TABLE [PS_GameData].[dbo].[Chars]
ADD CONSTRAINT DF_Chars_K1 DEFAULT ((0)) FOR K1;