Pregunta

I want to run this kind of a query in web sql

SELECT ID,
       (StartTime+EndTime) AS TimePeriod 
  FROM Department

Pls someone guide me. Thanks

¿Fue útil?

Solución

Result:

   SELECT ID, 
          StartTime || EndTime AS TimePeriod 
     FROM Department
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top