Views
No views yet
-- filter: comment, and a SELECT * FROM table prefix, the model completes with the appropriate WHERE clause.1CREATE TABLE "public"."product" (
2 "id" bigint PRIMARY KEY,
3 "name" text NOT NULL,
4 "category" text NOT NULL,
5 "price" numeric(10,2) NOT NULL,
6 "in_stock" boolean NOT NULL DEFAULT true
7);
8-- filter: electronics under $50
9SELECT * FROM product WHERE category LIKE '%electronics%' AND price < 50adapter/ directory contains the LoRA adapter weights.