Write a postgre SQL statement to insert NULL values into region_id column for a row of countries table.
INSERT INTO countries (country_id,country_name,region_id) VALUES('C3','UK',NULL);
Here is the command to see the list of inserting rows :
postgres=# SELECT * FROM countries; country_id | country_name | region_id ------------+--------------+----------- C1 | India | 1002 C2 | USA | C3 | UK | (3 rows)
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Here is the command to see the list of inserting rows :
need an explanation for this answer? contact us directly to get an explanation for this answer