#WORD 테이블의 ID 3번에서 6번까지 조회하는 쿼리 SELECT * FROM WORD where ID between 3 and 6; #WORD 테이블의 ID 3번에서 6번까지의 content 컬럼 조회하는 쿼리 SELECT content FROM WORD where ID between 3 and 6; #WORD 테이블의 ID 9번 삭제 delete from word where id = 9; #WORD 테이블에 인덱스 추가 insert into word (content, favorite, name) values ('단어뜻입니다', FALSE, '단어'); #WORD 테이블 id 1번인 인덱스의 favorite, content를 수정하는 쿼리 update word set (favorite, conten..