본문 바로가기

학습/[The-Origin][SW][Backend] Main Pag

(43)
[The Origin][VSCODE][Django] shell 이용한 데이터 Shell을 이용한 데이터 다루기 Python shell 실행 shell을 통한 objects 확인 objects Data 추가하는 방법 - [모델].objects.create( [내용 추가할 컬럼] = '추가할 내용' ) object Data 간단하게 보기 - 추가된 Data 간단하게 보기 - 추가된 Data 간단하게 보기 (보기 쉽게 인터프리터 활용) object Data 내용 보기 Shell을 이용한 objects 관련 명령 해보기 데이터 확인하기 = all - [모델].objects.all() 데이터 갯수 확인하기 = count - [모델].objects.all().count() 특정 데이터 확인하기 = filter - [모델].objects.all().filter(필터할 내용) - all로 검색..
[The Origin][백엔드] 3주차 QuerySet API - Query - QuerySet - QuerySet API Django Shell - Shell 사용하기 - Shell 데이터 다루기 Database Tool - DBeaver 사용 - 내적 저장 DB 확인 Django Admin - 기본 제공 기능 확인 - 간단한 커스터마이징 느낀점 - (개인생각) 백엔드 = 데이터 다루는 것 해당 강의를 듣기 전에도 생각을 했었던 백엔드의 기본 기능을 배운다는 느낌이 든다 이전에는 동작 원리 등을 배우면서 그냥 사용법만 배우는 느낌이라면 이제는 진짜 데이터를 다룰 준비를 하는 것 같았다. - Django의 편함을 느낌 백엔드라고 데이터 다루는게 필요한게 아니라 앱을 개발하는 사람이라면 기본적으로 알아야하는 것이 있는데 Django를 통해서 진..
[The Origin][개발환경][VSCODE] 환경 설정 & 유용한 확장 프로그램 VSCODE 설치 홈페이지를 통한 설치 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com Python 설치 홈페이지를 통한 설치 https://www.python.org/downloads/ Down..