Chèn dữ liệu vào bảng PostgreSQL

Minimal APIs are architected to create HTTP APIs with minimal dependencies. They're ideal for microservices and apps that want to include only the minimum files, features, and dependencies in ASP.NET Core. This tutorial teaches the basics of building a minimal API with ASP.NET Core.

Sau khi tạo bảng, bạn có thể thêm sản phẩm:

INSERT INTO products (name, description, price)
VALUES
('Laptop Dell XPS', 'Laptop cao cấp của Dell', 1500.00),
('iPhone 16', 'Điện thoại mới nhất của Apple', 1200.00);