Orders the result with the specified column.
final data = await supabase
.from('cities')
.select('name, country_id')
.order('id', ascending: true);
final data = await supabase
.from('countries')
.select('name, cities(name)')
.eq('name', 'United States')
.order('name', foreignTable: 'cities');