martin.softpro
martin.softpro

Reputation: 443

Generate Update Script MySQl Table

I have MySql table that has 250 fields, and i need to do an update, It might take hours to write the entire update manually.

In SQL SERVER, I have the option to "GENERATE UPDATE SCRIPT", I am looking for something like that option.

I tried Phpmyadmin and Navicat, but I don't find such option.

Upvotes: 2

Views: 2734

Answers (1)

AnandPhadke
AnandPhadke

Reputation: 13496

Use describe tablename and copy the fields into excel sheet and then populate the update statement.

Upvotes: 3

Related Questions