반응형 [IT 관련 지식]/[DB]2 select 조건 1. 단일 조건 SELECT * FROM 테이블명 WHERE 조건절; 2. 결합 조건 [1] AND : 모두 긍정 -> 참 SELECT * FROM 테이블명 WHERE 조건절1 AND 조건절2; SELECT * FROM test_table WHERE age > 30 and address = 'SEOUL'; - 나이가 30 이상이고 주소는 서울인... [2] OR : 하나만 긍정 -> 참 SELECT * FROM 테이블명 WHERE 조건절1 OR 조건절2 SELECT * FROM test_table WHERE age > 30 and address = 'SEOUL'; - 나이가 30 이상이거나 주소가 서울인... [3] 특정 문자로 시작하는 SLECT * FROM 테이블명 WHERE 문자열필드 >= 'A' .. 2014. 8. 22. mysql 사용자 생성 및 삭제 mysql db생성 root@web:~# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 35 Server version: 5.1.63-0ubuntu0.11.04.1 (Ubuntu) Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective .. 2012. 7. 3. 이전 1 다음 반응형