Pinned Loading
-
update-record.sql
update-record.sql 1update worker
2set compensation = 200000,
3worker_code = 'CODE-X'
4where id = 3
-
select-from-where-2.sql
select-from-where-2.sql 1select p.project_name, w.worker_name
23from project p, worker w, project_worker_map m
4where m.project_id = p.id
5 -
create-table.sql
create-table.sql 1create table workerX (id integer not null, name varchar(255), compensation double not null, manager_id integer not null)
-
populate.sql
populate.sql 1insert into workerX (id, name, compensation, manager_id) values (1, 'One First', 50000, 5)
2insert into workerX (id, name, compensation, manager_id) values (2, 'Two Second', 70000, 5)
3insert into workerX (id, name, compensation, manager_id) values (3, 'Three Third', 90000, 5)
4insert into workerX (id, name, compensation, manager_id) values (4, 'Four Fourth', 180000, 5)
5insert into workerX (id, name, compensation, manager_id) values (5, 'Five Fifth', 160000, 9)
-
utils.js
utils.js 12function formatValue(ctx, value, recurseTimes) {
3// Provide a hook for user-specified inspect functions.
4// Check that value is an object with an inspect function on it
5if (ctx.customInspect &&
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.