top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

how we can retrieve the unique values for the in a table without using the DISTINCT keyword

+2 votes
341 views

how we can retrieve the unique values for the in a table without using the DISTINCT keyword

posted Feb 1, 2015 by Garima Gupta

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

Using Group By

SELECT column from Table
GROUP BY column

answer Feb 1, 2015 by Garima Gupta
...