포트번호
mysql : 3306 oracle : 1521 mssql : 1433
DB 접속
mysql
shell> mysql --user=user_name --password=your_password db_name shell> mysql -u user_name -p password db_nameoracle
shell> sqlplus username/password@db_name
DB내 존재하는 테이블 검색
mysql> show tables; oracle> select * from tabs;
결과수 제한
mysql> select * from table where ROWNUM < 10; oracle > select * from table limit 10;
NULL 처리
mysql> select IFNULL(field1, 0) from table; oracle> select NVL(field1, 0) from table;
현재시간
mysql> select now() from dual; oracle> select sysdate from dual;
if-else 구문
mysql> select if(field=1, 'X','Y') from table; oracle> select decode(field,1,'X','Y') from table;
댓글
댓글 쓰기