| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- [
- {
- "name":"Sample: Top salary",
- "desc":"Top salary 2007 above $100k",
- "type":"0",
- "data":{
- "query":{
- "query":"SELECT sample_07.description, sample_07.salary\nFROM\n sample_07\nWHERE\n( sample_07.salary > 100000)\nORDER BY sample_07.salary DESC\nLIMIT 1000",
- "type":null,
- "email_notify":null,
- "is_parameterized":null
- },
- "functions":[ ],
- "VERSION":"0.4.0",
- "file_resources":[ ],
- "settings":[ ]
- }
- },
- {
- "name":"Sample: Salary growth",
- "desc":"Salary growth (sorted) from 2007-08",
- "type":"0",
- "data":{
- "query":{
- "query":"SELECT s07.description, s07.salary, s08.salary,\n s08.salary - s07.salary\nFROM\n sample_07 s07 JOIN sample_08 s08\nON ( s07.code = s08.code)\nWHERE\n s07.salary < s08.salary\nORDER BY s08.salary-s07.salary DESC\nLIMIT 1000",
- "type":null,
- "email_notify":null,
- "is_parameterized":null
- },
- "functions":[ ],
- "VERSION":"0.4.0",
- "file_resources":[ ],
- "settings":[ ]
- }
- },
- {
- "name":"Sample: Job loss",
- "desc":"Job loss among the top earners 2007-08",
- "type":"0",
- "data":{
- "query":{
- "query":"SELECT s07.description, s07.total_emp, s08.total_emp, s07.salary\nFROM\n sample_07 s07 JOIN \n sample_08 s08\nON ( s07.code = s08.code )\nWHERE\n( s07.total_emp > s08.total_emp\n AND s07.salary > 100000 )\nORDER BY s07.salary DESC\nLIMIT 1000",
- "type":null,
- "email_notify":null,
- "is_parameterized":null
- },
- "functions":[ ],
- "VERSION":"0.4.0",
- "file_resources":[ ],
- "settings":[ ]
- }
- }
- ]
|