+ 1
How do I insert values into a particular table in the database
MySQL
3 Antworten
+ 3
Insert into <table name> values(value1,value2,value3....)
Note : values should be in the order of the values is in the same order as the column in the table
+ 2
Can you show us your attempt, and give more details? You are barely at the beginning of the course, study a bit more, and you'll find the answer.
+ 2
Aymane Boukrouh I'm just sharing this because if you start to work on SQL then you need to know the insert query as soon as you are done with your table creation. But it is covered at the very end of the course.
WAMBUA MUEMA ANTONY here you go.
https://www.sololearn.com/learn/SQL/1868/