내마음대로만들어보자326 [SQL] Select, Where 기본 문법 예제 1. 성이 남씨인 유저의 이메일만 추출하기 select email from users where name = "남**"; 2. Gmail을 사용하는 2020/07/12~13에 가입한 유저를 추출하기 select * from users where created_at between "2020-07-12" and "2020-07-14" and email like "%gmail.com"; 3. Gmail을 사용하는 2020/07/12~13에 가입한 유저의 수를 세기 select count(*) from users where created_at between "2020-07-12" and "2020-07-14" and email like "%gmail.com"; 4. naver 이메일을 사용하면서, 웹개발 종합반.. 2022. 2. 22. HTML 기본 레이아웃2 로고 메뉴 이미지슬라이드 공지사항 갤러리 팝업 로고 하단메뉴 copyright /* reset */ * {margin: 0; padding: 0;} .clearfix::before, .clearfix::after {display: block; content: ''; clear: both;} /* 레이아웃 */ #wrap {width: 1200px;margin: 0 auto;} #side {float: left; width: 300px; height: 850px; background: #ddd;} #content {float: left; width: 900px;height: 850px; background: #ccc;} /* header */ #side .logo {width: 300px;height: 1.. 2022. 2. 21. [SQL] Select, Where절 기본문법 1. Where 절의 개념 Where 절은 Select 쿼리문으로 가져올 데이터에 조건을 걸어줄때 사용한다. 2. Where절 예제 - orders 테이블에서 결제수단이 카카오페이인 데이터 select * from orders where payment_method = "kakaopay"; - point_users 테이블에서 포인트가 5000점 이상인 데이터 select * from point_users where point >= 5000 - orders 테이블에서 주문한 강의가 앱개발 종합반이면서, 결제수단이 카드인 데이터 select * from orders where course_title = "앱개발 종합반" and payment_method = "kakaopay"; - 포인트가 20000점보다 많.. 2022. 2. 21. [SQL] Select 쿼리문의 개념 1. 쿼리문이란 쿼리는 질의를 의미하며, 데이터베이스에 명령을 내린다! select 쿼리문은 내가 특정 데이터를 선택해서 가져오겠다는 의미 → 어떤 테이블에서 어떤 데이터를 가져올지 2. 데이터 베이스 테이블 보기 show tables; 3. 특정 테이블의 데이터 가져오기 select * from orders; 4. orders 테이블의 특정 필드만 가져오기 select created_at, updated_at, email from orders; 2022. 2. 21. 이전 1 ··· 9 10 11 12 13 14 15 ··· 82 다음