in a Table there is a single attribute(column).it contains numbers.Some are repeated(2 or 3 and so on times) and some appears only one time.write as many queries to output all the numbers only once(apart from using distinct in SQL query).
in a Table there is a single attribute(column).it contains numbers.Some are repeated(2 or 3
Share
It appears you don’t need the HAVING clause:
The HAVING clause will make things worse: it would only list the values that occur only once!