Question

At the moment we use the street 1 field for the house number in our Magento 2.3.5 store.

But we want to revert this and only use 1 street field for both the street and house number. So we need to move all values from the street 1 field after the current values into the street 0 field.

In the database it is not just a new field, its just a new line in the street column. So it seems that we just need to add it to the same line.

How can we easily and safely achieve this? Can we perform this using an sql?

No correct solution

OTHER TIPS

I think you do easily do it using update query. Please review below reference query and update parameters based on your requirement

update DemoTable set UserFirstName=ListOfName where ListOfName is not null;

Here UserFirstName and ListOfName both are different field. Based on this example you can update the copy one column value to another column.

I hope this will help you.

Thanks.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top