

USE [financials]
GO

INSERT INTO [dbo].[accounts]
           ([type]
           ,[number]
           ,[name]
           ,[currency]
           ,[description]
           ,[accountid])
     VALUES
           ('_bank'
           ,390
           ,'Fifth Third'
           ,'USA'
           ,'banking'
           ,'1050')
GO




//insert records into your table 
