반응형
표에 댓글을 달려면 어떻게 해야 하나요 - 마리아DB
나는 내가 만든 표에 코멘트를 달려고 했습니다. comment = 'this is a comment'
하지만 항상 오류가 발생합니다.다음과 같은 방법으로 배치해 보았습니다.
create table info comment = 'this is a comment about table info' (
...
);
create table info (
places varchar(15) not null,
solar_system varchar(20),
primary key (places),
comment = 'this is a comment about table info'
);
create table info (
places varchar(15) not null,
solar_system varchar(20),
comment = 'this is a comment about table info',
primary key (places)
);
create table info (comment = 'this is a comment about table info',
places varchar(15) not null,
solar_system varchar(20),
primary key (places)
);
테이블에 있는 코멘트가 작동하려면 어떻게 해야 합니까?
CREATE TABLE example (
example_column INT COMMENT "This is an example column",
another_column2 VARCHAR(100) COMMENT "One more column"
) COMMENT="This is a comment about table";
그래서 당신의 경우에는
create table info (
places varchar(15) not null,
solar_system varchar(20),
primary key (places)
) comment = 'this is a comment about table info';
언급URL : https://stackoverflow.com/questions/71984189/how-can-i-comment-on-a-table-mariadb
반응형
'source' 카테고리의 다른 글
R에서 트라이캐치를 쓰는 방법 (0) | 2023.06.06 |
---|---|
트리거 if-delete-clause를 생성할 수 없습니다. (0) | 2023.06.06 |
오류 1366: 마리아에 문자열을 삽입할 때 잘못된 문자열 값DB (0) | 2023.06.06 |
python 내에서 bash 스크립트 실행 중 (0) | 2023.06.01 |
NSData를 문자열로 변환하시겠습니까? (0) | 2023.06.01 |