반응형

db 3

MySQL : select, update, delete (DML)

###### select 문 계속.. ####### 주의!!! where 문에서 둘 이상의 조건(필드)을 줄 때, 앞쪽에 primary 값의 조건을 써줘야한다! 1. 소나타이면서 배기량이 2000cc인 차량을 판매한 사원의 사번과 판매량을 검색하시오. select sale.sno, sale.qty from sale, car where car.cno=sale.cno and car.cname="소나타" and car.cc=2000; or select s.sno, s.qty from sale s, car c where c.cno=s.cno and c.cname="소나타" and c.cc=2000; ---------------------------------------------------------------..

컴퓨터/APM 2008.01.10

MySQL : 시작, DDL

음.. 이걸 뭐라고 하더라;; 암튼, 일반적으로 아래와 같다,고 한다. ■ PHP + MySQL + Apache Server + Linux ■ ASP + MS_SQL + WINDOWS 서버계열(IIS) ■ JSP + ORAQLE + 톰캣 + 여러운영체제.. 본인은 첫 번째를 배우는 중이고.. 그러므로 이것은 그에 대한 정리이다.. ■ MySQL의 대표적인 명령어. ■ DDL(Data Define Language) - create, drop, alter ■ DML(Data Manipulation Language) - select, insert, delete, update ■ DCL(Data Control Languge) - grant, revoke ■ DBMS(Data Base Management Syst..

컴퓨터/APM 2008.01.09
반응형