from sqlalchemy import func SampleModel.query.filter( func.concat(SampleModel.first_name, ' ', SampleModel.last_name) == 'First Last' ) ...
確定! 回上一頁