Question

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

Était-ce utile?

La solution

Result:

   SELECT ID, 
          StartTime || EndTime AS TimePeriod 
     FROM Department
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top