본문 바로가기
MySql

MySQL SQL : MySQL에서 기존 열을 기본 키로 설정

by 베이스 공부 2020. 9. 17.
반응형

3 개의 열이있는 데이터베이스가 있습니다.

id, name, somethingelse  

이 테이블에는 인덱스 세트가 없으며 "정의 된 인덱스가 없습니다!"라는 메시지가 표시됩니다. phpmyadmin
id is a 7digit alphanumeric value, unique to each row.
I want to set Drugid to be the primarykey/index (i dont know the difference if there is one)
Please explain in detail as i am new to this.
감사합니다.

 

해결 방법

 

SQL에서 실행하십시오.

ALTER TABLE tableName
  ADD PRIMARY KEY (id)           ---or Drugid, whichever you want it to be PK

또는 PHPMyAdmin 인터페이스 (테이블 구조)를 사용하십시오.

 

참조 페이지 https://stackoverflow.com/questions/9702766

 

 

반응형

댓글