Files
pgm/playground/db/derived.go

12 lines
193 B
Go
Raw Normal View History

2025-10-21 00:27:00 +05:30
package db
import "code.patial.tech/go/pgm"
func DerivedTable(tblName string, fromQry pgm.Query) pgm.Table {
t := pgm.Table{
Name: tblName,
DerivedTable: fromQry,
}
return t
}