+ 1
What is the command for inserting a collumn in sql database table?
4 odpowiedzi
+ 1
you use the insert into TableName command and then the fields you want to insert into, then the values for the fields. example:
insert into myTable(id,name,address,age) values(1, 'saket singh', 'London', 87);
the values for the fields and the fields should correspond; id cannot be a text or string, etc. ..
hope its helpful, am also a beginner😂
+ 1
Thanks for answering mate you have been very helpful
+ 1
pleasure to be of help!