MySQL 데이터베이스 구문 에 임시 변 수 를 설정 합 니 다.

434 단어 mysql
set @cat_id=0;
select @cat_id:=cat_id from category where cat_name='shoes';
update products set shop_price=shop_price+7 where cat_id=@cat_id;
update products set market_price=market_price+7 where cat_id=@cat_id;

 @cat_id 는 임시 변수, select @ catid:=cat_id from category where cat_name = 'shoes' 는 검색 결 과 를 @ cat 에 저장 합 니 다.id 에서 update 문 구 는 @ cat 를 사 용 했 습 니 다.id

좋은 웹페이지 즐겨찾기