
May 10th, 2000, 04:34 AM
|
|
Junior Member
|
|
Join Date: May 2000
Posts: 27
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
you could try to split your table by means of a query
example:
table has rows:
UID int, name char(50), counrty char(50)
you can select the different columns as like this:
select UID,name from table_name
or
select name,country from table_name
|