Warehouse shelf: SKU, weight and price under readable names
Warehouse shelf: SKU, weight and price under readable names
In the Kotomarket warehouse, items sit in a flat table goods. The columns have technical names that are hard for the shelf manager to read.
Select exactly three columns from goods and label each with a human-readable name using AS:
| From table | Alias in result |
|------------|-----------------|
| sku | artikul |
| weight_g | ves |
| price | cena |
Return all rows of the table (no filters, no sorting). Row order does not matter.
This is pure projection: nothing beyond picking the needed columns and renaming them — no WHERE, ORDER BY, or DISTINCT.
Exemplo de resposta esperada
É assim que se parece uma resposta correta: ela tem seu próprio número de linhas e não precisa coincidir com as tabelas do esquema. Sua resposta precisa retornar os mesmos nomes de colunas do exemplo: use AS para renomeá-las se for preciso.
| artikul | ves | cena |
|---|---|---|
| KM-001 | 1500 | 549.00 |
| KM-002 | 3200 | 1290.00 |
| KM-003 | 45 | 99.50 |
Entre para ver seu histórico de envios
EntrarEntre para usar o AI Mentor
Entrar