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
Run below SQL query to generate some example data. with example_data as ( select 'I want to copy this' as first_column, 1 as second_column union all select 'I accidently copy this' as first_column, 2 as second_column ) select * from example_data order by second_column desc
In the QUERY RESULT (PREVIEW) window, change the sort order by sorting the second column ascending (instead of descending as specified by the SQL query)
Select the first row ("I want to copy this") and copy it. (Right click + "Copy" or Ctrl+C)
Paste the result in a text editor. ("I accidently copy this")
The text was updated successfully, but these errors were encountered:
Steps to Reproduce:
Run below SQL query to generate some example data.
with example_data as ( select 'I want to copy this' as first_column, 1 as second_column union all select 'I accidently copy this' as first_column, 2 as second_column ) select * from example_data order by second_column desc
In the QUERY RESULT (PREVIEW) window, change the sort order by sorting the second column ascending (instead of descending as specified by the SQL query)
Select the first row ("I want to copy this") and copy it. (Right click + "Copy" or Ctrl+C)
Paste the result in a text editor. ("I accidently copy this")
The text was updated successfully, but these errors were encountered: