Austin Ofor
Posted on Jan 11, 2022
Intro to Next
Open http://localhost:3000 with your browser to see the result.
Intro
def function(foo):
print(foo)
- [ ] Run
> npm-installto install the project dependencies - [x] Install gulp.js via the Mac terminal or Gitbash on a PC
> npm install -g gulp - [ ] Run the Gulp command
> gulp
| Dimensions | Megapixels |
|---|---|
| 1,920 x 1,080 | 2.1MP |
| 3,264 x 2,448 | 8MP |
| 4,288 x 3,216 | 14MP |
console.logconsole.tableconsole.warn
I may not talk alot here, because the topic is pretty straight forward and speaks for its self.
const one = 12;
console.log("hello", one);
prints
hello 12
Peace out!!!
Get the List of Department without Manager
To get all the department that has no manager assign to them we have to make use of joins to join the related tables we need to make use.
We would ben using three tables departments, locations and countries.
Run the code below to see it in action.
select l.city || c.country_name, d.department_name
from departments d, locations l, countries c
where d.location_id = l.location_id
and d.manager_id is null;
SELECT MAX(ROW_KEY) FROM CS_00_CUS_CTC_X;
--
ALTER TABLE CS_00_CUS ENABLE ALL TRIGGERS;
--
SELECT * FROM CS_00_DCS
WHERE DOC_K NOT IN
(SELECT ROW_KEY FROM CS_00_DCR WHERE CUS_TP_DM = 'J')
AND CUS_K = '1014625';
That would be all for today.