Monday, 3 July 2017

Find Duplicate Rows From Table

Select ID,count(ID)
FROM TableName
group by ID
having count (ID) = 1;

No comments:

Post a Comment

React Hooks - custom Hook

  v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...