1

I'm making a transition from MS Access into MySQL. With Access, I can copy and paste data between tables, any duplicates will be automatically placed in the table paste_errors. How can I accomplish this in MySQL?

Omar
  • 11,783
  • 21
  • 84
  • 114

1 Answers1

1

You can try creating a Trigger. Check out this SO post which will outline two ways to do it.

Community
  • 1
  • 1