Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: No repeatetion of names?

    My actual query is:

    here Name is the fieldName and Employee is the TableName;

    SELECT Name FROM Employee GROUP BY Name HAVING ( COUNT(Name) >= 1 );

    From this query I got the...

  • RE: No repeatetion of names?

    I get this by the following query:

    SELECT Column_Name FROM TableName GROUP BY Column_Name HAVING ( COUNT(Column_Name) >= 1 );

Viewing 2 posts - 1 through 2 (of 2 total)