-
-
Save zendo108/d3b51dc3e9383e9a21589d9485fb8e5e to your computer and use it in GitHub Desktop.
mysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UPDATE Unit INNER JOIN UnitType | |
| ON Unit.`UnitType_unit_type_id` = UnitType.`unit_type_id` | |
| SET Unit.notes = UnitType.unit_type; | |
| UPDATE Space INNER JOIN SpaceType | |
| ON Space.`SpaceType_space_type_id` = SpaceType.`space_type_id` | |
| SET Space.notes = SpaceType.`space_type` | |
| UPDATE Appliance INNER JOIN AppType | |
| ON Appliance.`AppType_app_type_id` = AppType.`app_type_id` | |
| SET Appliance.notes = AppType.`app_type` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment