sql insert practice

Solutions on MaxInterview for sql insert practice by the best coders in the world

showing results for - "sql insert practice"
Christabel
09 Jan 2021
1INSERT INTO countries
2VALUES('US', 'United States of America', 'USA123')
Nils
04 Aug 2017
1+--------------+---------------+------+-----+---------+-------+
2| Field        | Type          | Null | Key | Default | Extra |
3+--------------+---------------+------+-----+---------+-------+
4| COUNTRY_ID   | varchar(2)    | YES  |     | NULL    |       |
5| COUNTRY_NAME | varchar(40)   | YES  |     | NULL    |       |
6| REGION_ID    | decimal(10,0) | YES  |     | NULL    |       |
7+--------------+---------------+------+-----+---------+-------+	
8