need sql query?
Database
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, table containing two fields one is code and another is name. i need to fetch repeated names only.(more than one occurance of name and code is not same). any one help to me. thanks in advance. Have A Nice Day! Murali.M
-
Hi, table containing two fields one is code and another is name. i need to fetch repeated names only.(more than one occurance of name and code is not same). any one help to me. thanks in advance. Have A Nice Day! Murali.M
-
SELECT name FROM table GROUP BY name HAVING COUNT(name)>1 Cheers, _____________ stefan bornuz
hi stefan, thanks for ur help. Have A Nice Day! Murali.M