일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- CSV
- python
- MS-SQL
- 가로 스크롤 막대
- 나만의 상점
- MSSQL
- 시트 탭 사라짐
- Kakao API Address
- 한글깨짐
- upbit
- Banker's
- swift 화면전환
- league of legends
- Oracle
- 일본여행
- 초딩수학
- LEFT JOIN
- Request.Form
- Banker's rounding
- Android
- 스크롤 사라짐
- 세로 스크롤 막대
- Aspose.cells
- 썸머노트
- rounding
- 업비트
- .csv
- chart.js
- Excel
- MYSQL
Archives
- Today
- Total
DBA
Oracle에서 테이블 유무확인하고 있으면 테이블을 Drop하고 Create 하는 쿼리 구문 본문
728x90
반응형
SMALL
Oracle에서 테이블 유무확인하고 있으면 테이블을 Drop하고 Create 하는 쿼리 구문
역시, Oracle은 뭔가 복잡 하다.
[Oracle]
declare
i_cnt number;
begin
select count(*) into i_cnt from all_tables where table_name = 'TEST01';
if i_cnt > 0 then execute immediate 'drop table TEST01'; end if;
execute immediate 'create table TEST01 (b number(1))';
end;
[MS-SQL]
if exists (select 1 from sys.objects where object_id = object_id ('TEST01') and type in ('U'))
begin
drop table TEST01
end
create table TEST01 (b int)
728x90
반응형
LIST
Comments