일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- springbootH2
- httppie
- JPAproxy
- jpa
- javageneric
- 스프링부트
- dockercmd
- JPA값타입
- gitinitial
- 자바제너릭
- Git
- 스프링부트기본설정
- jpqlquery
- JPA Hint & Lock
- 에이치투데이터베이스
- spring
- 데이터베이트h2
- sql
- embededtype
- JDBC connection pool
- MySqlType
- Open EntityManager
- springbootproxy
- 임베디드타입
- JPAmapping
- OSIV
- springboot기본설정
- 제이피큐엘쿼리
- 이해와 원리
- JPA프록시
Archives
- Today
- Total
목록MySqlType (1)
빡코
[MySql] 기본 문법
create database library; show databases; drop database library; use library; show tables; create table fruit ( id bigint auto_increment, name varchar(20), price int, stocked_date date, primary key (id) ); drop table fruit; select * from fruit; #DML Data Manipulation Language insert into fruit (name, price, stocked_date) values('사과', 1000, '2023-01-01'); #생성 update fruit set price = 1500 where na..
database
2023. 12. 26. 13:23