문제

I have a database with a structure, and I need to import the data from this database to other new database, but the new database has a completly different design. For example, the old database have just one table for users and new database have a customer and a webmaster tables that have FK with the user table.

To PHP, I'm looking for a pattern to write the import/mapping, I'm not sure even the name of it.

도움이 되었습니까?

해결책

An ETL (extract-transform-load) tool is one solution. ETL is commonly used in data warehousing where you need to extract data from one source, transform it, and load it into a database.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top