> For the complete documentation index, see [llms.txt](https://learnsql.gitbook.io/lernmysql/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learnsql.gitbook.io/lernmysql/welcome-to-the-mysql-tutorial/gan-gia-tri-mac-dinh-cho-table.md).

# Gán giá trị mặc định cho table

```
CREATE TABLE SINHVIEN(
    TenSV VARCHAR(255) DEFAULT 'noname',
    MaSV INT(11),
    NamSinh INT(4)
)
```
