I have a table dic
that has 2 columns english
and bangla
. I want to insert data into only the bangla
column using bulk insertion from a text file.
I tried which can insert into 2 column
BULK INSERT dic
FROM 'C:\Users\Imon-Bayazid\Desktop\wordddd\good one\test.txt'
WITH
(
FIELDTERMINATOR = '\n',
ROWTERMINATOR = '\n'
)
But how can I do into one specific column???