Sie sind auf Seite 1von 1

CREATE TABLE chahit(id VARCHAR(10),password varchar(10),marks varchar(3) primary key(id) ); insert into chahit values(,,'25'); insert into chahit

select all '10ec109','pwd','25' union select all '3434','sdss d','11' alter table chahit add address varchar(10) update chahit set phones='9540' where id='3434'; select * from chahit delete from chahit where id='3434'//delete row alter table chahit drop column phone//delete column select count(*) from chahit where id like '%ec%'//counts like flag update chahit set address='238' where id='10ece109'

Das könnte Ihnen auch gefallen