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