Write a postgre SQL statement to insert one row into the table countries against the column country_id and country_name
- Postgre SQL
- 2021-09-29
- mhanasmh00489829403
الأجوبة
INSERT INTO countries (country_id,country_name) VALUES('C2','USA');
Here is the command to see the list of the inserting rows :
postgres=# SELECT * FROM countries; country_id | country_name | region_id ------------+--------------+----------- C1 | India | 1002 C2 | USA |
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة