I want to only update one column in a table.
The table has an index column.
So my data looks likes this:
123, 8
125, 4
222, 6
333, 1
The table already contains rows with the values 123, 125, etc
Table columns are:
Index, col2, col3 ColX
I want to update ColX. I have tried with dummy columns in my CSV for col2 & col3 but no good because it complains about no default vlaue for col2.
Import CSV needs some more options. How can I write an SQL query to do this? I need access to the CSV data. I guess I could import into a dummy table then write some SQL to do the update. Not sure what this SQL qould look like.
Thanks DG
Import only selected columns CSV
In the Import CSV window on HeidiSQL there is a check box against each column name. I would have thought this was for selecting which fields were to be updated, but it doesn't work like that. What is the purpose of these check boxes anbd exactly how do they work?
Can't Heidi generate the SQL statement you gave for me?
Can't Heidi generate the SQL statement you gave for me?
the check boxes are used when you have a .csv import record that contains more fields than the table imported to; they select which of the fields are used for import.
heidisql currently cannot generate the UPDATE statements required; you would have to use/write a program, processing your input file, to do this. AWK or PERL would be good candidates for languages to write this program in.
heidisql currently cannot generate the UPDATE statements required; you would have to use/write a program, processing your input file, to do this. AWK or PERL would be good candidates for languages to write this program in.
Please login to leave a reply, or register at first.