말이 복잡하네

insert into table select field from table

시에 insert 값으로 특정 상수를 넣는 방법인데..

해보니 걍.. insert into 안에 'fixed string' 식으로 항목하나 넣어주면 된다.

 

 

[링크 : https://stackoverflow.com/questions/30809384/combining-insert-select-with-constants/30809406]

'프로그램 사용 > postgreSQL' 카테고리의 다른 글

sql 문자를 숫자로 정렬하기  (0) 2019.08.16
postgresql 상속  (0) 2019.08.16
pgadmin 초기 시작시 브라우저 선택  (0) 2019.08.15
postgres sequence - auto increment  (0) 2019.08.13
postgresql 변수 타입  (0) 2019.08.12
Posted by 구차니
Linux2019. 8. 16. 00:09

json 을 커맨드 라인에서 처리할 수 있게 해주는 유틸

 

-r은 raw로 출력

oncotree 에서 api로 받은것 중에서 code 영역만 추출

 

jq -r '.[].code' tumorTypes > code

[링크 : https://blog.outsider.ne.kr/1202]

 

+

sudo apt-get install jq

[링크 : https://stedolan.github.io/jq/download/]

[링크 : https://stedolan.github.io/jq/]

'Linux' 카테고리의 다른 글

awk 특정 열 제외하기  (0) 2019.09.02
linux 수동 trim  (0) 2019.08.16
awk NR, NF  (0) 2019.08.12
smart trip temperature?  (0) 2019.08.05
uniq  (0) 2019.07.30
Posted by 구차니

취향상의 문제(?)로 윈도우에서는 기본 브라우저를 chrome으로 설정하지 않는데

이래저래 pgadmin 실행시 edge로 띄우는것도 불편해서 설정을 찾는중

 

[링크 : https://stackoverflow.com/questions/50435656/pgadmin-4-always-open-in-browser-not-as-a-standalone-desktop-application/52905092]

'프로그램 사용 > postgreSQL' 카테고리의 다른 글

postgresql 상속  (0) 2019.08.16
sql 테이블에 검색한 값을 넣을때 고정값도 넣기  (0) 2019.08.16
postgres sequence - auto increment  (0) 2019.08.13
postgresql 변수 타입  (0) 2019.08.12
postgres 문자열 타입  (0) 2019.08.09
Posted by 구차니

비가 하루종일 엄청나게 오네

Posted by 구차니

내일이 광복절인것도 잊고 철야할뻔 했네 -_-

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

이번달도 끝  (0) 2019.08.31
모니터 갯수와 집중도의 반비례 관계...?  (2) 2019.08.30
부가세 계산법  (0) 2019.07.24
면접 두명  (2) 2019.07.23
집중력 제로  (2) 2019.07.22
Posted by 구차니

자.. 어떻게 설계할까...

[링크 : https://akaisun.tistory.com/52]

 

+

2019.08.15

당연하지만(?) schema 식별자가 public이 아니면 넣어주어야 한다.

[링크 : https://www.postgresdba.com/bbs/board.php?bo_table=B10&wr_id=28]

Posted by 구차니
Programming/node.js2019. 8. 12. 16:57

별다른 모듈 끌어오지 않아도 기본으로

new RegExp()를 통해 생성이 가능하다.

 

아래는 파일명에서 YYYY-MM 으로 된 녀석을 검색하는 예제

음.. 근데 딱 그 부분만 빼내는 법은 없나?

> var regex =  new RegExp('[0-9]{4}-[0-9]{2}')
undefined
> regex
/[0-9]{4}-[0-9]{2}/
> var fn = "ClinVarFullRelease_2019-07.xml"
undefined
fn.match(regex);
[ '2019-07', index: 19, input: 'ClinVarFullRelease_2019-07.xml' ]

[링크 : https://stackoverflow.com/questions/5675315/node-js-regular-expression-to-get-from-and-to]

 

+

regex.exec(fn)

[링크 : https://opentutorials.org/course/50/43]

 

+

()로 묶으면 완전히 매칭되는 부분만 결과를 돌려준다.

> var regex =  new RegExp('([0-9]{4}-[0-9]{2})')
undefined
fn.match(regex);
[ '2019-07',
  '2019-07',
  index: 19,
  input: 'ClinVarFullRelease_2019-07.xml' ]

[링크 : https://bradbury.tistory.com/47]

'Programming > node.js' 카테고리의 다른 글

node.js xpath 지원함수 목록  (0) 2019.09.10
node.js csv2json  (0) 2019.08.21
node.js xpath 모듈  (0) 2019.08.08
xpath text()  (0) 2019.08.07
node.js readline과 r/w stream  (0) 2019.07.31
Posted by 구차니
Programming/xml2019. 8. 12. 15:42

xml namespace나 schema 관련된 녀석을 조회하려는데

어떻게 해야 할지 감이 안와서(evaluation fail막 뜨고..) 찾다가 발견

name이 아니라 name()이 포인트

//*[name()='xsi:noNamespaceSchemaLocation']

 

[링크 : https://stackoverflow.com/questions/4817112/xpath-query-for-xml-node-with-colon-in-node-name]

 

xsi는 Xml Schema Instance의 약자인 것으로 보인다.

인스턴스 문서가 참조할 때는 두 가지 특별한 애트리뷰트를 사용하는데, xsi:schemaLocation xsi:noNamespaceSchemaLocation이 그것이다. 관습적으로 "xsi"는 "http://www.w3.org/2001/XMLSchema-instance"를 가리키는 접두어로 쓰인다.)

[링크 : https://ko.wikipedia.org/wiki/XML_스키마_(W3C)]

'Programming > xml' 카테고리의 다른 글

xsd minOccurs, maxOccurs  (0) 2019.09.11
xpath count()  (0) 2019.09.09
xpath concat  (0) 2019.08.08
xpath syntax - attribute 검색 및 특정값 얻기  (0) 2019.08.08
xpath..  (0) 2019.08.01
Posted by 구차니

bigint(int8) 64bit

interger(int, int4) 32bit

double precision(float8 = 64bit)

real(float4 = 32bit)

 

[링크 : https://www.postgresql.org/docs/9.2/datatype.html]

 

JSON 변수 타입 접근 연산자

-> (JSON object or array)

->> (stringigy?)

tablename->'json_key'->'json_key'

[링크 : https://blog.outsider.ne.kr/1061]

Posted by 구차니
Linux2019. 8. 12. 13:14

NR(number of Record?)

NF(number of Field?)

[링크 : https://ko.wikibooks.org/wiki/예제로_배우는_AWK/필드와_레코드]

 

The variable NF is set to the total number of fields in the input record.

[링크 : https://linux.die.net/man/1/awk]

'Linux' 카테고리의 다른 글

linux 수동 trim  (0) 2019.08.16
jq - json in linux command line  (0) 2019.08.16
smart trip temperature?  (0) 2019.08.05
uniq  (0) 2019.07.30
musl / uclibc  (0) 2019.07.15
Posted by 구차니