Update a column in table using SQL*Loader?
问题 I have written a SQL Script having below query. Query works fine. update partner set is_seller_buyer=1 where id in (select id from partner where names in ( 'A','B','C','D','E',... // around 100 names. )); But now instead of writing around 100 names in a query itself , I want to fetch all the names from the CSV file. I read about SQL*Loader on internet but i did not get much on update query. My csv file contain only names. I have tried load data infile 'c:\data\mydata.csv' into table partner