Search⌘ K
AI Features

Question: Import CSV Data

Understand how to import CSV files into MySQL databases to update supplier metrics without altering existing records. This lesson guides you through practical steps to handle CSV data import, supporting delivery and performance analysis.

Question

Given the following structure of the Suppliers table:

Field

Type

SupplierID

int

SupplierName

varchar(50)

Email

varchar(50)

Phone

varchar(15)

Address

varchar(100)

OnTimeDeliveryRate

decimal(5,2)

AvgLeadTime

int

Where, SupplierID is the primary key. The table contains information about ...