반응형
시작 시간 : 8시 34분
종료 시간 :
문제 유형 :select
1. 단순 where 문으로 일치하는 값을 찾는 단순 select 문
SELECT name from Customer where referee_id != 2 OR referee_id IS NULL;
4. where 절의 결과 값에서 distinct 값을 뽑아내는 select 문
select distinct author_id as id from Views where viewer_id=author_id order by id;
5. varchar 칼럼의 데이터 길이를 축정하는 length문을 이용한 select문
select tweet_id from Tweets where LENGTH(content) > 15;
반응형
'기술스택을 쌓아보자 > SQL' 카테고리의 다른 글
[조각 SQL] 테이블 내의 CONSTRAINT 확인하기 (0) | 2022.05.17 |
---|---|
[조각SQL] ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails 해결하기, 이미 생성된 테이블에 cascade 적용 (0) | 2022.05.17 |
[조각SQL] 칼럼 이름 바꾸기 rename column (0) | 2022.05.11 |
TIL 2022 05 10 - sqlalchemy의 cascade, relationship [TODAY I LEARN] (0) | 2022.05.11 |
[조각SQL, DB] CASE 구문을 알아보자! (0) | 2021.11.27 |
댓글