Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- eclipse
- fuction
- object
- constantnumber
- 객체형변환
- start()
- arguments
- 콘크리트클래스
- methodArea
- class
- Hashtable
- Polymorphism
- run()
- abstractclass
- concreteclass
- Vector
- Eureka
- garbagecollection
- reference
- value
- overload
- string
- 추상클래스
- ALTER
- override
- 생성자
- hamobee
- super
- MSA
- hashCode
Archives
- Today
- Total
뇌운동일지
[Oracle SQL] select 연습문제 본문
1.
describe student;
2.
describe subject;
3.
select * from student;
4.
select * from enrol;
5.
select stu_no, stu_name
from student;
6.
23.
select sub_name, sub_prof
from subject
where sub_prof like '이%';
24.
select stu_dept || '과 ' ||stu_name||'입니다.' as 자기소개
from student;
25.
select *
from student
where stu_dept = '컴퓨터정보';
55.
select stu_no, stu_name, stu_dept
from student
where stu_gender ='M' or stu_grade = 1 ;
56.
select stu_no, stu_name
from student
order by stu_no ;
57.
select stu_name, stu_no
from student
order by stu_name ;
58.
select stu_dept, stu_name, stu_no
from student
order by stu_dept, stu_name ;
59.
select *
from student
order by stu_dept, stu_grade desc ;
60.
select *
from student
order by stu_dept, stu_class ;
'DB > Oracle' 카테고리의 다른 글
[Oracle SQL] select 연습문제 (61~108) (0) | 2020.05.26 |
---|---|
[Oracle SQL] select 추가사항 (0) | 2020.05.26 |
[Oracle] function (0) | 2020.05.25 |
[Oracle] select (0) | 2020.05.22 |
[Oracle] 데이터베이스 생성, ER 다이어그램 (0) | 2020.05.22 |
Comments