GithubHelp home page GithubHelp logo

Comments (4)

wacilpong avatar wacilpong commented on September 26, 2024 1

회고

  • git add --patch 관련 blog
  • 모던 자바스크립트 deep dive 불리언, 암묵적/묵시적 타입변환, 객체/원시형 읽음
    • 원시형은 메모리 주소에 해당 값을 저장하고 식별자가 이 값의 주소를 참조해옴
    • 객체는 메모리 주소에 주소값이 저장되고 식별자가 이 그 주소값을 참조해옴
    • 즉, 변수에 저장되어 있는 값이 원시값이나 참조값이냐의 차이
    • 이를 공유에 의한 전달 (call by share)라고 부른다함. call by value, call by ref가 아니라.

from wednesday_salon.

wacilpong avatar wacilpong commented on September 26, 2024

참석 ㅎ-ㅎ

from wednesday_salon.

ds2lvg avatar ds2lvg commented on September 26, 2024

참석

from wednesday_salon.

ds2lvg avatar ds2lvg commented on September 26, 2024

회고

  • select 쿼리와 Join
-- Customers 테이블에서 CustomerName이 F로 시작하고 City가 Madrid이거나 Torino를 만족하는 데이터를 가져와라
SELECT * 
FROM Customers
WHERE CustomerName LIKE 'F%'
AND City IN ('Madrid', 'Torino')
  • Inner Join은 겹치는 영역만 출력, Left Outer Join은 첫번째 테이블쪽 모두 표시, Right Outer Join은 두번째 테이블쪽 모두 표시
SELECT c.CustomerID, c.CustomerName, o.OrderID, o.OrderDate, od.ProductID, od.Quantity
FROM Customers c
LEFT OUTER JOIN Orders o
ON c.CustomerID = o.CustomerID
LEFT OUTER JOIN OrderDetails od
ON o.OrderID = od.OrderID
WHERE od.Quantity > 20
ORDER BY od.Quantity DESC

from wednesday_salon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.