0
Seleccionando Múltiples Columnas SQL
Por qué el ejercicio SQL de seleccionando múltiples columnas me da error 👉 SELECT productname, productiondate, expirariondate; FROM Product;
6 ответов
+ 2
Con esta consulta di la solución
SELECT productname, productiondate, expirationdate FROM products;
0
No funciona con nada
0
Write a query to display student ID and number of course registered by students. Display student ID only if student has registered for a course. Give alias name for the count as NOOFCOURSES. Sort the result based on count in descending and student ID ascending.
0
Elimina ; al final del SELECT
- 1
Si ya así mismo al final de tanto intentos funcionó