0
I am trying to do a Dump to do a Database Merge. Follow command:
mysqldump -u root -p senha -hlocalhost --opt -t --where codemp=1 database > emp01.sql
The same is returning the error
mysqldump: Got error: 1054: Unknown column 'codemp' in 'Where clause' when retrieving data from server
This column exists. Has anyone seen or caught any such case?
Screenshot
Show a print of this table please
– durtto
select this table and display the print
– durtto
try the table name + field,
where minhatabela.codemp=1
– BrTkCa