반응형
테이블 추가하기
g5_write_task 테이블이 없다면 5teamname1~5teamname10 (text) 필드와 함께 테이블을 추가하여라.
CREATE TABLE IF NOT EXISTS `g5_write_task`(
`5teamname1` text NOT NULL,
`5teamname2` text NOT NULL,
`5teamname3` text NOT NULL,
`5teamname4` text NOT NULL,
`5teamname5` text NOT NULL,
`5teamname6` text NOT NULL,
`5teamname7` text NOT NULL,
`5teamname8` text NOT NULL,
`5teamname9` text NOT NULL,
`5teamname10` text NOT NULL)
컬럼 값 수정
g5_shop_item 테이블 안의 it_explan 값을 모두 test로 변경해라.
UPDATE `g5_shop_item` SET it_explan = 'test'
반응형
'개발 > sql' 카테고리의 다른 글
[Sql/php] rownum 결과 값에서 몇번째 행인지 구하기 (4) | 2023.05.31 |
---|---|
sql 컬럼 내용 중 특정 문자 바꾸기 (4) | 2023.02.10 |
[MySQL] #1067 'ct_time'의 유효하지 못한 디폴트 값을 사용하셨습니다. 오류 해결 (2) | 2021.12.07 |