help wanted
Repository metrics
- Stars
- (5 stars)
- PR merge metrics
- (No merged PRs in 30d)
Description
import { prefix } from "@leizm/sql";
const { table } = prefix("my_");
table("user").select().where({ id: 1 }).limit(1).build();
// SELECT * FROM `my_user` WHERE `id`=1 LIMIT 1