본문 바로가기

Programming/Database

(3)
Head First SQL (헤드퍼스트 SQL) 요약정리 Head First SQL (헤드퍼스트 SQL) markdown 포맷 잘 맞는 것 링크 (github) https://github.com/itdar/TIL/blob/main/books/headfirst_sql.md GitHub - itdar/TIL: Today I Learned Today I Learned. Contribute to itdar/TIL development by creating an account on GitHub. github.com 데이터와 테이블 SELECT 문 DELETE 와 UPDATE 좋은 테이블 설계: 정규화는 왜 하죠? ALTER: 과거 다시 쓰기 고급 SELECT 테이블이 여러개인 데이터베이스 설계 조인과 다중 테이블 연산 서브 쿼리: 쿼리 안의 쿼리 외부 조인, 셀프 조인..
.Net Entity class / DB migration command / 닷넷 / 데이터베이스 마이그레이션 명령어 / DotNet / C sharp / 씨샵 / 씨샾 .Net Entity class / DB migration command / 닷넷 / 데이터베이스 마이그레이션 명령어/DotNet/Csharp/씨샵/씨샾/EntityFrameworkCore/엔티티프레임워크코어 - DB migration 하는 방법 (DB 최초 생성 또는 수정 후 다시 생성) 1. Visual Studio 에서 View - Other Windows - Package Manager Console(PMC) 창 열어둔다. 2. PMC 창에 아래 명령어 순서대로 친다. 2.1. 기존의 DB가 있다면 해당 DB (Context) 클래스에 해당되는 DB를 지워준다. Drop-Database -Context {DbContext클래스이름} 2.2. 만들어둔 DB (Context) 클래스에 해당되는 Mig..
Difference between Char and Varchar in Database datatype, 데이터베이스 자료형 Varchar 와 Char 의 차이점 Difference between Char and Varchar in Database datatype, 데이터베이스 자료형 Varchar 와 Char 의 차이점 I got this article from ( here ) 원문보기 ( here ) Difference between Char and Varchar Data Type ‘Char’ is a fixed-length data type which is used to store character string value of fixed length, whereas ‘Varchar’ is a variable-length data type which is used to store variable length alphanumeric data. 'Char' 은 고..