I want to copy all the rows and columns from one table to another. I know the way using Cursor, The cursor gets all the data and i then taking it into the ArrayList and after doing the same thing reverse to insert it into another table.
But is there any simple and fast way to copy one table to another. If Yes,then please let me know..
You can copy the contents of one table and use it to populate another table as long the structure of the tables are same.
INSERT INTO Destination SELECT * FROM Source;