I'm not familiar with SQL Anywhere as such, but assuming this is the same as Sybase's SQL, if you want to see all the data in a table, it would be:
select * from tablename
If you want to see what the table structure is it would be:
exec sp_help tablename
Hopefully, that's what you're asking!