hello I need help.
can you tell me the steps to create an account on the SQL
can you tell me the steps to create an account on the SQL
USE [ACCOUNT_DBF]
GO
INSERT INTO [dbo].[ACCOUNT_TBL] ([account], [password], [isuse], [member], [id_no1], [id_no2], [realname], [reload], [OldPassword], [TempPassword], [cash])
VALUES
(N'Account ID', N'PW in MD5', N'F', N'A', N'', N'', 'F', NULL, NULL, NULL, '0')
GO
INSERT INTO [dbo].[ACCOUNT_TBL_DETAIL] ([account], [gamecode], [tester], [m_chLoginAuthority], [regdate], [BlockTime], [EndTime], [WebTime], [isuse], [secession], [email])
VALUES
(N'Account ID', N'A000', N'2', N'F', GETDATE(), N'', N'', N'20050101', N'O', NULL, N'')
GO
N'F',
USE [ACCOUNT_DBF]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[usp_CreateNewAccount]
@account = N'ACCOUNTNAME',
@pw = N'PASSWORD IN MD5',
@cash = 0,
@email = N'[Only registered and activated users can see links. Click Here To Register...]'
GO
USE [CHARACTER_01_DBF]
GO
update [CHARACTER_TBL] set m_chAuthority = P' where m_szName = 'CHARACTERNAME'
GO
USE [ACCOUNT_DBF]
GO
update [ACCOUNT_TBL_DETAIL] set m_chLoginAuthority = 'P' where account = 'ACCOUNTNAME'
GO