데이터베이스/Oracle
Oracle 테이블 데이터 조회
왕왕왕왕
2015. 8. 20. 15:25
select 컬럼명 from 테이블명 where 조건
select * from test;
select * from test where id = 1;
select id,username,birth from test where id=1 and username='king';