You are on page 1of 1

// insert query column names values

insert into user (name,password) values ('ali', '1234')


// update query
'table' colm value indentification
Update user set name = 'Saqib Shahzad' where id = 1;

// delete query
table colmn value coln value
delete from user where name = "saqib" and id = 1;
// Select Query
select * from user (it will select all the data from the table from all the col
umns and rows)

select * from user where id = '1'


select * from user where id = '1' and name = 'ali'

You might also like