13.6k views
3 votes
SELECT DISTINCT ProjSize FROM projects

User Shaheed
by
7.4k points

1 Answer

1 vote

Answer:

Step-by-step explanation:

this SQL command will return you only the DISTINCT (different) values without repeating any value of variable (ProjSize) from the table or column (projects)

User Snf
by
7.1k points