Delete 썸네일형 리스트형 오라클/ 기본 쿼리문 연습. create table tb_test(test_a varchar2(100) not null default 'a')drop table tb_testdelete from tb_test where test_a = 'a' select * from tb_test select count(*) from tb_testinsert into tb_test(test_a, test_b,test_date) values ('a','b',to_date('data','format'))update tb_test set test_a = 'b'where test_b = 'b' alter table tb_test add constraint tb_test_pk primary key(test_a)alter table tb_test add co.. 더보기 이전 1 다음