Description:
To count the distinct prices from the "Product" table, you can use the following SQL query:
```sql
SELECT COUNT(DISTINCT Price) AS DistinctPriceCount
FROM Product;
```
In this query:
- `Product` should be replaced with the actual name of your table.
- `Price` should be replaced with the actual name of the column containing the prices.
This query will count the distinct prices present in the "Price" column of the "Product" table and return the result as "DistinctPriceCount."
#sql
Share this link via
Or copy link



























