My SQL을 복습하고 더 나아가 SQL능력을 향상시키기 위해 Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert 강좌를 듣기로 했다. 앞으로 이 강좌를 들으면서 내용을 정리하고 블로깅하려고 한다.I
SHOW TABLESIt tells us that there is a cat table but that's pretty much it doesn't say anything about the contents of that table what are the differen
DROP TABLE <TABLE NAME> DROP DATABASE와 유사하다.
Adding Data to Table.위의 예처럼 INSERT INTO <TABLE NAME>(칼럼 1, 칼럼2) VALUES (칼럼1 밸류, 칼럼2 밸류) 이렇게 칼럼을 지정해서 밸류를 넣어줄 경우, 순서를 바꿔서 넣어 줄 수 있다. 밑의 예시를 참조하자 이렇
If you're wondering how to insert a string (VARCHAR) value that contains quotations, then here's how.You can do it a couple of ways:Escape the quotes
UDEMY - The Ultimate MySQL Bootcamp: Go from SQL B…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert강좌를 들으며 정리이전에 만들었던 cats테이블을 살펴보면 이렇게 생겼다
만약에 이름도 같고 나이도 같은 동명이인이 있다고 하면 어떻게 할까? 그들은 서로 다른 사람이지만 데이터만 봐서는 누가 누군지 구별할 수 없다. 따라서 각각 고유의 값을 가지는 키가 필요하다.Primary key를 설정해준 unique_cat테이블을 만들어줬다. cat
기존의 cat테이블을 삭제하고 새로 만들어주고, 데이터를 추가해준다.
이전 글들에서 INSERT INTO를 통해 테이블에 데이터를 넣고나서, 데이터들이 제대로 들어갔나 확인하기 위해 SELECT \* FROM <TABLE NAME>을 사용했었다. 여기서 \* 는 모든 칼럼을 의미한다. 따라서 이전 글에서 만들고 데이터를 넣어주었던
UDEMY - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert 를 보면서 정리WHERE은 CRUD에서 RUD를 할 때, 조건을 추가할 때 사용된다.아직까지는 R - Reading 그러니까 SELECT까지밖에 진
기본 형식 : UPDATE <Table Name> SET <list of changes want to make> WHERE <condition> 업데이트 전UPDATEEntire line is going to fined in cat table all t
다음 SQL문은 이름이 'Egg'인 고양이를 삭제하는 SQL문이다. ❗️주의 이 문구는 cats 테이블 안에 있는 모든 데이터를 삭제한다. 따라서 사용에 주의하고, WHERE로 반드시 조건을 붙이는 것이 좋다.
테이블을 만들거나 데이터를 넣을 때 직접 입력해도 되지만, 외부에 있는 SQL파일들을 적용시키고 싶거나, 해야할 때가 있다. 그럴 때 이 방법을 사용한다.먼저 테이블이 없는 database가 있다.SQL을 빠져나와서 fist_file.sql이라는 파일을 새로 만들어줬다
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글 들어가기에 앞서, MySQL 공식 홈페이지에 들어가면 매뉴얼이 있다.공식 홈페이
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글공식문서(https://dev.mysql.com/doc/refman/8.
UDEMY - The Ultimate MySQL Bootcamp: G…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert강좌를 보고 정리MySQL의 String Function중의 하나인 REPLACE이다.역시 제
UDEMY - The Ultimate MySQL Bootcamp를 수강하면서 쓴 글전글 (REPLACE)에서도 썼지만 꽤 중요한 내용인 것 같아 따로 빼서 쓰게 되었다.❗️주의 : 모든 String Function들은 문자나 문자열을 숫자(물론 INT형이 아니라 STR
UDEMY - The Ultimate MySQL Bootcamp: G…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 보고 쓰는 글공식문서(https://dev.mysql.com/doc/refman/
UDEMY - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 들으면서 정리공식문서(https://dev.mysql.com/doc/refman/8.0/en/string-functions.html글자수
UDEMY - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 보고 정리하며 쓴 글 MySQL - UPPER & LOWER UPPER 공식문서
UDEMY - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert강의를 들으며 정리
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 보고 정리하는 글먼저 작가들의 last_name들을 검색해보자.결과가 나왔다. 그런데 봐보면 이름이 중복되는 것들이 보인다. 한 작가가 책을 여러
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글SELECT 칼럼명FROM 테이블 ORDER BY 순서를 메기고 싶은 칼럼명알파벳 순으로 정렬되어서 나오는 것을 볼 수 있다.
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글SELECT로 선택하는 개수를 제한해준다.먼저 그냥 SELECT를 썼을 때LIMIT 와 함께 써보자.LIMIT을 5로 주니깐
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글this is ignoring the first part of the query
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글 문제는 129강에 있음
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글SELECT COUNT(\*) FROM books이번에는 author_fname의
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글"GROUP BY" summarized or aggregates identical
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글
UDEMY - The Ultimate MySQL Bootca…The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리한 글전 글에 이어서, 만약 pages가 가장 Max인 책의 title을 알고싶을 때는
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글년도별로 정렬하고 싶으면 이렇게.순서를 넣어주면(페이지 순으로),좀 더 깔끔하게 정리
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글예전에 잠깐 나온적 있는 AVG함수이다. AVERAGEQ. Calculate the average pages across al
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글149강 중간문제.
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글VARCHAR and CHAR both store text but there's one relly key difference.
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글It works with whole numbers so it's useful if you're working with thin
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글'YYYY-MM-DD' Format'HH:MM:SS' Format'YYYY-MM'DD HH:MM:SS' Format이중 DAT
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글Date and Time Functions 공식문서mysql> SELECT DAY(birthdate) FROM people;\
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글만약 multiple things를 하고싶다. 예를들어 3달 12일을 더하고 싶다. 이런식으로 더하고 싶을때는 어떻게 해야할까
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글공식문서MySQL에서 TIMESTAMP는 another datatype이다.DATETIME과 TIMESTAMP는 둘다 시간 정
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글172강
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글일반적인 다른 프로그램에서 쓰는 not equal과 같다.Q. Select all books NOT published in 2
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글WHERE 조건에 >, < 등 부등호로 조건을 줄 수 있다.예를 보자.,,99는 1보다 크다. 그러므로 true이다. 그
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글Q. SELECT books written by Dave Eggers, published after the year 2010여
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글Q. SELECT all books written by 'Carver' or 'Lahiri' or 'Smith'.먼저 이전에
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글CASE공식문서이런 형식이다.다른 프로그램 언어에서의 switch문과 비슷하다.END 까지가 하나의 문법이고, 뒤에 AS는 생
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글문제는 194강에
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글문제는 214강에 있다.
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글위 그림과 같은 테이블을 만들거다.
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글이 글에서는 여러가지 문제들위주로 풀어보겠다.스키마는 바로 이전 글에서 만들었던 스키마를 이용한다.답 :답 : 답 : 답 :
Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert를 수강하며 정리하는 글 인스타그램 클론 코딩을 해보자. 단 , 실제 스키마는 무척 복잡하겠지만 여기서는 매우 단순화시켜서 만들어보도록 한다. 1