You are on page 1of 1

select * from regions;

insert into regions (REGION_NAME,REGION_ID)


VALUES ('Oceania', '5');

update regions set REGION_NAME= 'Africa' where region_id=4;

delete regions from REGION_ID WHERE REGION_ID=5;

BORRAR UNA FILA


--------------------------------------------
delete from regions where region_id='5';

You might also like