I have 2 table : user (database a) and users (database b)
table user (database a):
id int(5)
username varchar(50)
password varchar(50)
date date
hour time
table user have 100 data
table users (database b):
id int(10)
username varchar(50)
password varchar(50)
created_at timestamp
updated_at timestamp
deleted_at timestamp
table users does not have data
I want to move 100 data from table user (database a) to table users (database b)
whether it can move data from table user (database a) to table users (database b) using sqlyog?
whether using a script?
or is there another way?
If you are using sqlyog, perform below steps :
tables
in database a table
and select Copy Table(s) To Different Host/Database
I hope this helps.