Oracle Select Distinct with One or More Columns
1.To select distinct result for a specific column, we use the command: select distinct(col1) from table1; For example: select distinct(studentid) from student; 2.If we want to select distinct with more than one column, we can use the command: select distinct col1, col2, col3 from table1;… Read More