'[DB]/[MySQL]'에 해당되는 글 7건

  1. 2015.08.10 mysql Field doesn't have a default value
  2. 2015.08.10 mysql dump
  3. 2015.02.02 mysql left, right 함수
  4. 2015.01.09 mysql union 사용하기
  5. 2015.01.09 mysql instr() 사용
  6. 2015.01.09 mysql substring_index() 사용
  7. 2015.01.08 MySQL INT data type 비교
반응형

mysqldump 를 떴는데 --skip-opt 때문에 pk 의 auto_increment 옵션이 빠지는 문제가 발생했다


일단은


ALTER TABLE table_name MODIFY column_name column_type NOT NULL AUTO_INCREMENT;


를 입력해서 해결


나중엔 --skip-opt 를 넣지 말고 dump 를 떠야겠다

반응형

'[DB] > [MySQL]' 카테고리의 다른 글

mysql dump  (0) 2015.08.10
mysql left, right 함수  (0) 2015.02.02
mysql union 사용하기  (0) 2015.01.09
mysql instr() 사용  (0) 2015.01.09
mysql substring_index() 사용  (0) 2015.01.09
Posted by FeliZ_하늘..
,

mysql dump

[DB]/[MySQL] 2015. 8. 10. 12:09
반응형

--skip-opt 넣으면 auto_increment 가 빠짐


mysqldump -uroot -p -d -q db_name > schema.sql


mysqldump -uroot -p --no-create-info db_name > data.sql


mysql -uroot < schema.sql


mysql -uroot < data.sql

반응형

'[DB] > [MySQL]' 카테고리의 다른 글

mysql Field doesn't have a default value  (0) 2015.08.10
mysql left, right 함수  (0) 2015.02.02
mysql union 사용하기  (0) 2015.01.09
mysql instr() 사용  (0) 2015.01.09
mysql substring_index() 사용  (0) 2015.01.09
Posted by FeliZ_하늘..
,
반응형

http://www.spatium.co.kr/languages/content.php?chno=5&bno=28

반응형

'[DB] > [MySQL]' 카테고리의 다른 글

mysql Field doesn't have a default value  (0) 2015.08.10
mysql dump  (0) 2015.08.10
mysql union 사용하기  (0) 2015.01.09
mysql instr() 사용  (0) 2015.01.09
mysql substring_index() 사용  (0) 2015.01.09
Posted by FeliZ_하늘..
,
반응형

http://warmz.tistory.com/278

반응형

'[DB] > [MySQL]' 카테고리의 다른 글

mysql dump  (0) 2015.08.10
mysql left, right 함수  (0) 2015.02.02
mysql instr() 사용  (0) 2015.01.09
mysql substring_index() 사용  (0) 2015.01.09
MySQL INT data type 비교  (0) 2015.01.08
Posted by FeliZ_하늘..
,
반응형

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_instr


instr(string, substring)

string 에서 substring 의 시작위치를 알려준다

시작 index 는 1 부터 시작한다

반응형

'[DB] > [MySQL]' 카테고리의 다른 글

mysql dump  (0) 2015.08.10
mysql left, right 함수  (0) 2015.02.02
mysql union 사용하기  (0) 2015.01.09
mysql substring_index() 사용  (0) 2015.01.09
MySQL INT data type 비교  (0) 2015.01.08
Posted by FeliZ_하늘..
,
반응형

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substring-index


substring_index(string, delimiter, count)


string 의 delimiter 를 기준으로 찾는데,

count 가 양수이면 왼쪽으로 찾고, count 가 음수이면 오른쪽을 찾는다

반응형

'[DB] > [MySQL]' 카테고리의 다른 글

mysql dump  (0) 2015.08.10
mysql left, right 함수  (0) 2015.02.02
mysql union 사용하기  (0) 2015.01.09
mysql instr() 사용  (0) 2015.01.09
MySQL INT data type 비교  (0) 2015.01.08
Posted by FeliZ_하늘..
,
반응형

http://dev.mysql.com/doc/refman/5.1/en/integer-types.html

반응형

'[DB] > [MySQL]' 카테고리의 다른 글

mysql dump  (0) 2015.08.10
mysql left, right 함수  (0) 2015.02.02
mysql union 사용하기  (0) 2015.01.09
mysql instr() 사용  (0) 2015.01.09
mysql substring_index() 사용  (0) 2015.01.09
Posted by FeliZ_하늘..
,