Another method to insert data record into a table in addition on previous post,
We still use table ProductList.
select * from ProductList
If results:
Msg 208, Level 16, State 1, Line 1
Invalid object name 'ProductList'.
Create table ProductList first, use query below.
CREATE TABLE ProductList
(
ProductId nvarchar(6),
ProductName nvarchar(50),
UnitPrice float,
Quantity int
)
insert into ProductList select 'CPU001','CPU','300',15
select * from ProductList
#Results:
ProductId ProductName UnitPrice Quantity
CPU001 CPU 300 15
Tidak ada komentar:
Posting Komentar