+ 1

Does SQL 'Insert Into' save the new data?

I am working through the lessons and it hasn't said anything about creating the tables, saving new data, or deleting data. If I follow the 'INSERT INTO' instructions from the lesson, will it save the inserted values to the table when I'm done? It seems like such a simple question but I have nowhere to test these lessons yet so I'm asking here. I appreciate everyone's answers and advice. Thank you. šŸ˜Š

6th Feb 2018, 6:36 AM
Jennifer H
Jennifer H - avatar
4 Answers
+ 12
yes , it will make changes to the table ā˜ŗ
6th Feb 2018, 9:11 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 1
>> ā€¦but I have nowhere to test these lessonsā€¦ There are online SQL sandboxes like this one: http://sqlfiddle.com Or you may set up your own SQL server on your local computer, if you are serious about learning it.
6th Feb 2018, 8:23 AM
deFault
+ 1
Thank you Marvin. This http://sqlfiddle.com works on my mobile browser. And yes friends, I am aware writing code, testing, and building a portfolio may be easier on an actual computer but for now I find it more convenient to study on my smartphone.
6th Feb 2018, 10:06 PM
Jennifer H
Jennifer H - avatar
0
It will insert new row to the table and it will save the given data to that row. After ā€INSERT INTOā€ you specify your table name and after that you will give the data you want to save. INSERT INTO table_name VALUES (ā€nameā€, ā€ageā€) You can use that if you are adding values for all the columns of the table. Else you need to specify columns name after table name
6th Feb 2018, 7:53 AM
Toni Isotalo
Toni Isotalo - avatar