RuleTek interview question

Given a database table, write SQL code to return the unique strings from a column

Interview Answer

Anonymous

12 Mar 2019

SELECT DISTINCT string FROM table_name;