You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

SELECT c_country
  , c_first_name
  , c_last_name
FROM
    (
        SELECT c_country
          , c_first_name
          , c_last_name
        FROM
            app_fd_details
        ORDER BY
            c_country asc
          , c_first_name asc
          , c_last_name asc
        LIMIT 18446744073709551615
    )
    alias

Runtime


Download the sample app:

  • No labels