티스토리 뷰
delimiter $$
create procedure metaDataInsert()
begin
SET @i = 0;
while @i < 100 DO
insert into METATBL (META) VALUE (@i);
set @i = @i + 1;
end while;
END; $$
//drop
drop procedure if exists metaDataInsert;
//call
call metaDataInsert();
'Development > Database & SQL' 카테고리의 다른 글
[MYSQL] 컬럼 값이 NULL일 경우 치환 (0) | 2024.01.10 |
---|---|
RDB와 NoSQL의 차이점 (0) | 2022.03.29 |
[Oracle] 테이블, 컬럼, 데이터 (추가/수정/삭제) (0) | 2021.08.11 |
댓글
링크
최근에 올라온 글
- Total
- Today
- Yesterday