SyntaxFix
Write A Post
Hire A Developer
Questions
Using DISTINCT should do it:
SELECT DISTINCT id, uname, tel FROM YourTable
Though you could really do with having a primary key on that table, a way to uniquely identify each record. I'd be considering sticking an IDENTITY column on the table