You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have some feature to get unique values in a columns with SELECT DISTINCT.
I can do it with pandas unique() for small tables, but for larger one it is a waste of RAM to load everything into pandas to discard it just afterwards.
It would be nice to have some feature to get unique values in a columns with
SELECT DISTINCT.I can do it with pandas
unique()for small tables, but for larger one it is a waste of RAM to load everything into pandas to discard it just afterwards.