Generally RMS is unStructured Type of Data Storage in Java ME. So RMS Stores Data like in Flat File kind format. This is the reason RMS you can not perform query operations in RMS.
Now Coming to your point, To store Data with Multiple Columns, you can do it in following two ways.
<ROW><NAME>Lucifer</NAME><OCCUPATION>Student</OCCUPATION><AGE>21</AGE></ROW>
Now you can store this XML in RMS, and while retriving data,
you need to parse it such that it will return you column base value.
Using some Delimiters in Records ( for e.g. "|" Pipe Sign )
For Another option you can simply add "|" sign after each value for example
in your case,
Lucifer|Student|21|
Rajan|Student|20|
Now while retrieving data , you need to parse this "|" sign and fetch various data from one column.