in 연산자
where 필드명 in (값, 값, 값);
select * from testmember where no in (1,2,3,9,8,7);
|| 연결연산자
select name || '님의 아이디 : ' || id from 테이블명;
select name || '님의 아이디 : ' || id as 문장 from testmember;
'DB > DBMS & SQL' 카테고리의 다른 글
DBMS SQL Oracle Database SubQuery(서브쿼리) (0) | 2023.03.10 |
---|---|
DBMS SQL Oracle Database CRUD - DML 테이블의 데이터 수정, 제약조건 (0) | 2023.03.10 |
DBMS SQL Oracle Database 오라클 내장함수 (0) | 2023.03.09 |
DBMS SQL Oracle Database CRUD - DML 데이터 조건 검색 (0) | 2023.03.08 |
DBMS SQL Oracle Database CRUD - DML 시퀀스 (0) | 2023.03.08 |