Getting data from a Multiselect field in a single doctype

How to retrieve values from a Table Multiselect field in a single DocType?
For example, to retrieve the API key:
api_key = frappe.db.get_single_value(‘Stock Alert Settings’, ‘twelvedata_api_key’)
Now, how can I retrieve data from a Table Multiselect field?

Hey, I found a solution to this issue:
countries = stock_alert_settings.get(‘country’)
country_names = [frappe.get_doc(‘Country’, country.get(‘name’)).country_name for country in countries]

Here, ‘Country’ is the main doctype that stores all country data in Frappe.