WHERE 특정한 조건을 줄 때 사용 -- 아래의 형태로 사용 SELECT column_name FROM table_name WHERE condition; 번호가 6인 학생의 이름과 번호를 가져올 때 SELECT student_number, student_name -- 번호와 이름 선택 FROM student WHERE student_number = 6; -- 조건 MySQL에서는 ==라는 기호가 아니라 =를 사용한다. 연산자 = 같음 != 같지 않음 같지 않음 큼 = 크거나 같음 student_name이 NULL인 경우를 가져올 때 SELECT student_name, student_number FROM student WHERE student_name IS NULL; -- stduent_name이 NU..
SELECT 데이터를 선택하고 가져오기 위해서 사용 student 테이블에서 student_name과 student_number을 가져오고 싶을 때 SELECT student_name, student_number -- 가져올 항목(column) FROM student; -- 데이터를 가져올 테이블 SELECT 다음에는 가져올 column의 이름을 적는다. 만약 column이 여러 개인 경우 콤마( , )를 사용한다. FROM 다음에는 가져올 column의 테이블 명을 적는다. 단어는 스페이스나 줄바꿈을 사용하여 구분한다. SQL문 마지막에는 세미콜론( ; )을 적는다. SELECT column순대로 column이 표시된다. column 순서를 직접 지정할 수 있다. -- 위의 쿼리문과 column의 순서..
1. 우선 MySQL 홈페이지의 DOWNLOADS에 들어간다. 링크: https://www.mysql.com/downloads/ MySQL :: MySQL Downloads MySQL Cluster CGE MySQL Cluster is a real-time open source transactional database designed for fast, always-on access to data under high throughput conditions. MySQL Cluster MySQL Cluster Manager Plus, everything in MySQL Enterprise Edition Learn More » C www.mysql.com 위의 화면이 나타날 것이다. 2. 스크롤 아래로 내려서 ..
- Total
- Today
- Yesterday
- github
- 1차 인터뷰
- 2차 인터뷰
- solidity
- mysql
- DGS Framework
- downTo
- graphql
- pm.test
- hashcode
- Squash and merge
- python3
- git
- postman collection
- java
- 네이버 2022 공채
- 주생성자
- string
- Python
- Basic Type
- go 특징
- postman tests
- squash merge
- Kotlin
- 확장 함수
- pm.expect
- Kotlin In Action
- postman
- 코딩테스트
- 코틀린
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |