SQL Insert - T-SQL Example

T-SQL Insert Statement

This example demonstrates a basic SQL insert statement.

Let's assume we have a table called 'Customers' with the following columns:

Column Name | Data Type | Description

Name | String | Customer's full name

Email | String | Customer's email address

City | String | Customer's city

Address | String | Customer's full address

Phone | String | Customer's phone number

Insert Data

INSERT INTO Customers (Name, Email, City, Address, Phone) VALUES ('John Doe', 'john.doe@example.com', 'New York', '123 Main St', '555-1234');