Products

 avatar
unknown
plain_text
5 months ago
415 B
1
Indexable
USE [swp_pj_05f]
GO

INSERT INTO [dbo].[Products] ([product_name], [product_description], [product_price], [product_image], [category_id], [is_hidden])
VALUES 
    ('Cheeseburger', 'A delicious cheeseburger with cheese and lettuce.', 50000, 'cheeseburger.jpg', 1, 0),
    ('Coke', 'Refreshing Coca-Cola drink.', 15000, 'coke.jpg', 2, 0),
    ('Fries', 'Crispy French fries.', 20000, 'fries.jpg', 3, 0);
GO
Editor is loading...
Leave a Comment