카페검색 본문
카페글 본문
-
INSERT - 데이터 삽입하기 2024.03.23해당카페글 미리보기
-- 데이터 입력하기 insert into cats (name, age) values ("Jetson", 7); INSERT INTO cats (name, age) VALUES ('Blue Steele', 5); INSERT INTO cats (name, age) VALUES ('Jenkins', 7); -- 다른 순서로 데이터 입력하기 insert into cats(age, name...
-
How to insert video into text for Capcut (텍스트 안에 동영상 넣는 캡컷PC 편집) 2023.09.12해당카페글 미리보기
https://youtu.be/CZ0hByUXEes?si=vWdyrgoMQzAucGoW https://youtu.be/CZ0hByUXEes?si=P-BVyTa90hibCbKh
-
Direct Path Insert와 Redo 데이터 2023.04.25해당카페글 미리보기
t_log_with_idx; truncate table t_nolog_no_idx; truncate table t_nolog_with_idx; exec tpack.begin_session_snapshot; insert into t_log_no_idx select 'x' from dual connect by level <= 100000; exec tpack.add_session_snapshot; insert...
-
insert into 구문 만들어주는 프로시저 2006.02.20해당카페글 미리보기
insert into 테이블 구문을 만들때.. 컬럼이 많으면 상당히 손가락이 아파온다. 그러므로 그 아픈 insert into구문을 자동생성하게끔 만든 프로시저이다. 잘 만든것은 아니지만 유용하게 쓰길 바랍니다. Create Procedure SP_Insert ( @objName nvarchar...
-
Re:insert into 구문의 오류입니다. 좀 봐주셨으면 좋겠습니다. 2001.11.22해당카페글 미리보기
'response.write "SQL=" & SQLInsertStr 'RESPONSE.END 이걸 oConn.execute(SQLInsertStr) 위에 써보시구요.. insert into구문이 왜 두개나 있죠..?? 그리구 테이블설계시 int로 잡혀있는건 ''로 묶을실 필요 없습니다. number는 모르겠구 0같은건 ''를 한...