| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
- 문자열
- vscode
- string
- array
- pass by reference
- Deep Learning
- assignment operator
- C++
- pointer
- const
- 오블완
- programming
- Pre-processing
- 포인터
- Python
- 알고리즘
- 파이썬
- function
- 티스토리챌린지
- baekjoon
- 백준
- 배열
- 함수
- Class
- 반복문
- predictive analysis
- Object Oriented Programming
- Data Science
- raw data
- OOP
- Today
- Total
목록2025/03/14 (2)
Channi Studies
Database works like a folder, and table works like a file in SQL. We will work in the query window of MySQL Workbench Software, that can be accessed after succesfully connecting to MySQL server. Database To create a database, we use CREATE query (MySQL is not case-sensitive, meaning that you can use either CREATE, Create, create, CrEaTe, etc)CREATE DATABASE myDB; To use the created database, yo..
이번 포스트부터 매일 조금씩 SQL을 공부하는 프로젝트를 시작합니다. Relational Database Management System (RDBMS) software that manages and stores data in a structured format, using tables with rows and columns, and allows users to interact with the data using a structured query language (SQL). We will studying with MySQL, one of the most popular RDMBS used worldwide. Why We Use MySQL?✅ Structured Data Storage – MySQL is ..