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

Was it helpful?

Solution

Result:

   SELECT ID, 
          StartTime || EndTime AS TimePeriod 
     FROM Department
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top