Write an SQL statement to create a table named parts that has two columns: a field for a part number, which will be automatically set to the next part number when a new part is added, and a description field, which will hold up to 255 characters of text.
What will be an ideal response?
```
CREATE TABLE parts (part_number INT UNSIGNED NOT NULL AUTO INCREMENT,
description varchar(255))
```
Computer Science & Information Technology
You might also like to view...
What software do I use to create a web page?
a. database b. spreadsheet c. Web authoring software d. both b and c
Computer Science & Information Technology
________ is an audio type that combines small file size with high quality and that will be used will all future software systems
Fill in the blank(s) with correct word
Computer Science & Information Technology