본문 바로가기
SQL

leetcode 175. Combine Two TablesEasy

by 무적김두칠 2022. 3. 17.

1
2
3
4
5
6
7
/* Write your PL/SQL query statement below */
select
p.firstname,p.lastname,a.city,a.state
from
person p, address a
where
p.personid=a.personid(+)
cs
반응형

댓글