블로그
-
2025.05.28 (수) 슈퍼코딩 부트캠프 백엔드 / 네이버웹툰 인턴 Day 13 일일보고
RDBMS (Relational Database Management System): 데이터를 행(row), 열(column) 기반의 테이블(table) 구조로 관리하는 시스템 (예: PRIMARY KEY, name VARCHAR(50) NOT .......
blog.naver.com · 2025.05.28
-
Task 1: Wiritng an email to complain
Furniture factory customer support team My name is Inha, and I’m writing this email to complain about the oak wood table .......
blog.naver.com · 2025.04.08
-
db manager by python tkinter mariadb
initialize_db(): conn = sqlite3.connect("connections.db") cursor = conn.cursor() cursor.execute( """ CREATE TABLE IF NOT EXISTS connections ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, host TEXT, port INTEGER
blog.naver.com · 2024.12.12
-
ExportToSQL 수정판.
String Dim values As String Dim columnPos As Integer Dim cellValue As String ' Set your worksheet and table name here Set ws = ThisWorkbook.Sheets("sheet2") ' Change to your sheet name tableName = "tx_info2"
blog.naver.com · 2024.10.29
-
MYSQL + JSON FORMATTING
Q. there is two table artist CREATE TABLE `artist` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar NULL, `biography` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; artist_bio CREATE TABLE
blog.naver.com · 2024.03.17
-
Revising the Select Query II
cities in the CITY table with populations larger than 120000. The CITY table is described as follows: SELECT NAME FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION
blog.naver.com · 2023.10.14
-
Japanese Cities' Names
gt; Basic Select > Japanese Cities' Names Query the names of all the Japanese cities in the CITY table The CITY table is described as follows: SELECT NAME FROM CITY WHERE COUNTRYCODE = 'JPN';
blog.naver.com · 2023.10.16
-
Weather Observation Station 5
.: number of characters in the name). The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western
blog.naver.com · 2023.10.16
-
[Spring Boot] JPA 어노테이션 정리
@Entity Java class와 table 간 매핑을 위해 사용하며, JPA가 해당 class를 관리 합니다. 속성 name : 엔티티 이름을 지정 (default : class 이름) @Table 매핑 할 테이블 정보를 지정합니다.
blog.naver.com · 2022.11.14
-
PowerBI) 엑셀의 lookup을 DAX에서 사용하기 (related/unrelated)
위와 같은 one-to-many 관계가 있는 상태에서, Many 쪽에 [Item name]을 추가하고 싶은 경우에는 RELATED( )를 사용하면 된다. Data View에서 상단 메뉴바의 Table tool → New Column을 클릭한다. 반대로 One 쪽에서 Many의 값이 필요할 때가 있다.
blog.naver.com · 2022.11.13