How do you write SQL queries for insert delete etc for numeric and alphanumeric values also where to insert the colons ('') ║
Answers
Answered by
0
Insert into (table name) ("column1","column2" ,...)
Values ("value1", "value2", ...);
DELETE FROM (tablename) where (condition for eg: where dop="12-07-2009");
I hope it helps you! Pls mark the brainliest!
Similar questions