Answers for "sql unique column with first row"

SQL
0

How to select only the first rows for each unique value of a sql tablecolumn?

SELECT
    CName, MIN(AddressLine)
FROM
    MyTable
GROUP BY
    CName
Posted by: Guest on September-05-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language