DB
-
[무작정 기록] 명령어(Oracle 기준)IT/DataBase 2025. 3. 25. 20:17
- sql plus 내부 명령어: sql plus 환경을 제어하는 내부 명령어 명령어의미예시+결과clear screen화면의 모든 내용을 지워준다(화면의 초기화)desc user_constraints사용자가 설정한 제약의 정보를 갖고 있는 데이터 사전[활용1] 설정된 모든 제약의 이름과, 제약의 종류와, 제약의 상태, 제약의 대한 상세정보를 조회.- 작성법( 제약의 이름 : constraint_name 제약의 종류 : constraint_type 제약의 상태 : status 제약에 대한 상세정보 : search_condition )select constraint_name, constraint_type, status search_condition, from user_constrain..