# getting Google search queriesxsv search -s URL 'google.+?q=' export.csv | rg 'q=(.+?)&' -o -r '$1' | tr '+' ' ' | sort | uniq
# getting unique URLsxsv select URL export.csv | rg 'https?://(.+?)/' -or '$1' | sort | uniqSee also CSV SQLite Querying for an alternative approach.