Home Forums SQL Server 7,2000 T-SQL How to select count(*) where count < 4 RE: How to select count(*) where count < 4

  • select * From Table

    group by ....

    having count(?)>(select count(?) from Table1)

    :w00t: