source

표에 댓글을 달려면 어떻게 해야 하나요 - 마리아DB

lovecheck 2023. 6. 6. 08:27
반응형

표에 댓글을 달려면 어떻게 해야 하나요 - 마리아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

반응형