adspace
Hi All,
I want to display all duplicate records in the table. My
query has to fetch all the records which are duplicate(First
Name or Last Name). Also I want the ability to also pull
names where there might be a middle initial placed in the
end of the first name field, (i.e., "Maria Z. " vs. "Maria")
as well.
Please guide me to find this.
Table:
ID FirstName LastName
1 Zach H Hoffman
2 Zach Hoffman
3 Troy Hoffman
4 Shawn Livermore
5 Prem S
6 Jony Hoffman H
7 Zach Modan
I need the query to filter.........
ID FirstName LastName
1 Zach H Hoffman
2 Zach Hoffman
3 Troy Hoffman
6 Jony Hoffman H
7 Zach Modan
I hope this example will give you clear idea.....
Thanks in Advance
Prem
Answer Posted / vamsi
select id,Lastname, firstname from record where FirstName like 'Hoffman%' or LastName='Zach'
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is it possible to have clustered index on separate drive from original table location?
Does view occupy space?
explain different types of backups avaialabe in sql server? Given a particular scenario, how would you go about choosing a backup plan? : Sql server database administration
Explain “row_number()” in sql server with an example?
What is a coalesce function?
How to enter binary string literals in ms sql server?
What is normalization and what are the advantages of it?
what is the difference between openrowset and openquery?
How to remove duplicate rows from table except one?
List the ways in which dynamic sql can be executed?
What is the difference between for xml raw and for xml auto?
Can we do dml on views?
What is subquery? Explain the properties of a subquery?
What is an indexed view?
How do I start sql server 2017?