Is there way to split Data In One Field of Table into Two Fields(Columns) for Printing in MySQL
To make things more clear, let us first create a sample table CREATE TABLE table_test( ID INT, Item VARCHAR(100), Amount DOUBLE, Item_Mode VARCHAR(10) ); Now we can enter some sample data INSERT INTO `table_test`(`ID`,`Item`,`Amount`,`Item_Mode`) VALUES (1,'Allowances',100.00,'a'), (2,'HRA',200.00,'a'), (3,'DA',100.00,'a'), (4,'FBP',100.00,'a'), (5,'Income…