RuleTek Interview Question

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

Interview Answer

Anonymous

Mar 12, 2019

SELECT DISTINCT string FROM table_name;