> For the complete documentation index, see [llms.txt](https://kythuat.dtechvn.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kythuat.dtechvn.com/bao-cao/lay-id-ten-bc-cus.md).

# LẤY ID-TÊN BC CUS

* Muốn lấy id + tên báo cáo theo nguyên tắc
* id trên 1tr được viết lại thành 1M

```sql
-- lấy id + tên báo cáo theo format làm tài liệu
select ma,vietnam,report,Hethong,DISABLE
,CONCAT(FLOOR(report / 1000000), 'M', report % 1000000) + ' - ' + vietnam
from report 
where report>1000000
order by report
```
