fork download
  1. SELECT name FROM sqlite_master WHERE type='table' AND name='Railways';
  2.  
  3. -- Query to count the number of trains from each source station
  4. SELECT SourceStation, COUNT(*) AS TrainCount
  5. FROM Railways
  6. GROUP BY SourceStation;-- your code goes here
Success #stdin #stdout #stderr 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 4: no such table: Railways