본문 바로가기
Kosta DevOps 과정 280기/Java

데이터 베이스 프로그램-2

by 롯슈83 2024. 6. 5.
  • 자료를 조회하는 데이터 베이스 명령어
  • select 컬럼이름1, 컬럼이름2, ...from 테이블명;
//Student 테이블로부터 학생의 이름을 조회
select name from student
//student 테이블로부터 학생의 이름과 영어 점수를 조회
student name, eng from student
//student 테이블로부터 모든 속성를 조회
//와일드 카드 문자 => *
student name, kor, eng, math from student;
student * from student;
  • 조건을 만족하는 데이터의 조회
  • select 컬럼이름들 form 테이블이름 where 조건식;(홑따옴표 주의)
//국어점수가 80점 이상일 경우
select * from Student where kor >= 80;

//이름이 이순신인 사람의 국어점수
 select kor from Student where name='이순신';
 
 //이름이 이순신인 사람의 모든 속성
 select * from Student where name='이순신';