728x90
반응형
su oracle
sqlplus /nolog
conn /as sysdba
startup
conn scott/tiger
select column from table;
desc table; //table 에 대한 설명
select String1 || ' ' || String2 as Other_name from table; //문자열의 결합은 || 사용
select distinct column from table; //중복된 column의 요소를 제거
sqlplus /nolog
conn /as sysdba
startup
conn scott/tiger
select column from table;
desc table; //table 에 대한 설명
select String1 || ' ' || String2 as Other_name from table; //문자열의 결합은 || 사용
select distinct column from table; //중복된 column의 요소를 제거
728x90