Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- check_password
- Django
- python
- SQL
- graphene-django
- allauth
- numpy
- Django-allauth
- for loop
- array
- flask
- GraphQL
- tkinter Radio 동적버튼
- FastAPI
Archives
- Today
- Total
목록SQL (2)
객
[Graphql] 나름대로 정리
웹 앱 API 개발을 위한 GraphQL ( O'REILLY ) ------------------------------------------------------------------------------- 간략 정리 내용임. 1. Graphql Query - query - Select - mutation - Insert, Update, Delete - subscription - query와 동일 [socket 연결로 전달되는 데이터 변경 사항을 실시간감지 가능.] - http method - GET, POST, PUT, Delete 2. 엣지와 연결 - 정수(Int), 실수(Float), 문자열(String), 불(Boolean), 식별자(ID) - 정수와 살수 타입은 JSON 숫자 타입 데이터를 반환..
[PL]/DB
2021. 10. 8. 18:00
번호 자동 증가
< 자동 증가 > CUBRID PostgreSQL MS-SQL create table test01 ( f_test01 int AUTO_INCREMENT(1,1), f_test02 varchar(20) not null ); create table test01 ( f_test01 serial , f_test02 varchar(20) not null ); create table test01 ( f_test01 numeric IDENTITY(1, 1) NOT NULL , f_test02 varchar(20) not null );
[PL]/DB
2013. 11. 21. 21:34