개발/sql

Sql 기본 명령문

반응형

테이블 추가하기

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'

 

 

썸네일

 

반응형