On SQL Server, to add data record into a table use INSERT INTO Statement.
INSERT INTO (FieldName1,FieldName2,FieldName3, ...)TableName VALUES (value1, value2, value3, ...)
Example 1:
We will create a table first, its name ProductList.
--Create Table ProductList
CREATE TABLE ProductList
(
ProductId nvarchar(6),
ProductName nvarchar(50),
UnitPrice float,
Quantity int
)
After ProductList created, remark above query, cause table name is unique on a database.
select * from ProductList
#Results:
ProductId ProductName UnitPrice Quantity
Empty, cause we not yet inserted anyhing into ProductList, now insert with statement below
insert into ProductList (ProductId,ProductName,UnitPrice,Quantity) values ('LCD001','LCD Monitor','150',5)
select * from ProductList
#Results:
ProductId ProductName UnitPrice Quantity
LCD001 LCD Monitor 150 5
Example 2:
We will insert 1 record againt into ProductList, in some fields only.
insert into ProductList (ProductId,ProductName) values ('LCD002','LCD Monitor')
select * from ProductList
#Results:
ProductId ProductName UnitPrice Quantity
LCD001 LCD Monitor 150 5
LCD002 LCD Monitor NULL NULL
Tidak ada komentar:
Posting Komentar