#AI #LLM
구글 2024 I/O
Gemini, Gemma 모델 업데이트
Veo, Imagen, Music AI Sandbox 등 멀티모달 서비스 업데이트
Synth ID 기능 (AI 생성 여부 판단) 업데이트
Reaction
Comment
Share
create table book(
id int primary key,
title text not null
);
select *
from index_advisor('select book.id from book where title = $1');
{"CREATE INDEX ON public.book USING btree (title)"}
create table book(
id int primary key,
title text not null
);
select *
from index_advisor('select book.id from book where title = $1');
{"CREATE INDEX ON public.book USING btree (title)"}