หากคุณใช้ AdonisJS และมี ID ผสมกันเช่น ABC-202, ABC-201 ... คุณสามารถรวมการสืบค้นข้อมูลดิบกับ Query Builder และใช้โซลูชันด้านบนได้ ( https://stackoverflow.com/a/25061144/4040835 ) ดังต่อไปนี้:
const sortField =
'membership_id'
const sortDirection =
'asc'
const subquery = UserProfile.query()
.select(
'user_profiles.id',
'user_profiles.user_id',
'user_profiles.membership_id',
'user_profiles.first_name',
'user_profiles.middle_name',
'user_profiles.last_name',
'user_profiles.mobile_number',
'countries.citizenship',
'states.name as state_of_origin',
'user_profiles.gender',
'user_profiles.created_at',
'user_profiles.updated_at'
)
.leftJoin(
'users',
'user_profiles.user_id',
'users.id'
)
.leftJoin(
'countries',
'user_profiles.nationality',
'countries.id'
)
.leftJoin(
'states',
'user_profiles.state_of_origin',
'states.id'
)
.orderByRaw(
`SUBSTRING(:sortField:,3,15)*1 ${sortDirection}`,
{
sortField: sortField,
}
)
.paginate(
page,
per_page
)
หมายเหตุ:
ในบรรทัดนี้: SUBSTRING(:sortField:,3,15)*1 ${sortDirection}
,
- '3'หมายถึงหมายเลขดัชนีของอักขระที่ไม่ใช่ตัวเลขตัวสุดท้ายก่อนตัวเลข หากรหัสผสมของคุณคือ "ABC-123" หมายเลขดัชนีของคุณจะเป็น 4
- '15'ใช้เพื่อจับเป็นจำนวนหลักหลังยัติภังค์
- '1'ดำเนินการทางคณิตศาสตร์บนสตริงย่อยซึ่งส่งผลให้สตริงย่อยเป็นตัวเลขได้อย่างมีประสิทธิภาพ
Ref 1: คุณสามารถอ่านเพิ่มเติมเกี่ยวกับการเชื่อมโยงพารามิเตอร์ในแบบสอบถามดิบได้ที่นี่: https://knexjs.org/#Raw-Bindings
Ref 2: Adonis Raw Queries: https://adonisjs.com/docs/4.1/query-builder# _raw_queries