# SQLean - SQLite에 정규식/통계/유니코드/가상테이블 함수 추가

> Clean Markdown view of GeekNews topic #4011. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=4011](https://news.hada.io/topic?id=4011)
- GeekNews Markdown: [https://news.hada.io/topic/4011.md](https://news.hada.io/topic/4011.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2021-04-05T09:41:55+09:00
- Updated: 2021-04-05T09:41:55+09:00
- Original source: [github.com](https://github.com/nalgeon/sqlite-plus/)
- Points: 4
- Comments: 2

## Topic Body

- SQLite 에 부족한 여러 함수들을 추가해주는 동적 라이브러리

ㅤ→ 윈도우(DLL),리눅스(SO),맥(dylib)

- re (정규식) : REGEXP, regexp_like, regexp_substr, regexp_replace

- stats (통계) : median, stddev, stddev_pop, variance, percentile

- vsv (CSV를 가상 테이블로 로딩) : create virtual table temp.vsv using vsv(...); select * from vsv;

- unicode : upper(), lower(), title(), fold(), unaccent()..

## Comments



### Comment 4822

- Author: xguru
- Created: 2021-04-09T08:47:18+09:00
- Points: 2

SQLite Plus 였다가 이름이 SQLean 으로 변경 되었네요. 그리고 위에 없는 두가지 추가

- json1 : 보통 SQLite에 추가해서 빌드 되지만, 없는 경우 확장으로 사용 가능하게 제공

- math : 3.35에 있는 math 를 그 이전버전 에서 사용가능하게 확장으로 추가

### Comment 4784

- Author: xguru
- Created: 2021-04-05T09:42:07+09:00
- Points: 3

SQLite 3.35 의 새 기능 https://news.hada.io/topic?id=3883

- Math 함수 : cos,sin,tan,log,ln,exp,floor,mod,pi,pow,power,radians,sqrt등

CG/SQL - SQLite용 Stored Procedure 코드 생성기 https://news.hada.io/topic?id=2998

SQLite를 도큐먼트DB로 사용하기 https://news.hada.io/topic?id=3271

simple-graph : SQLite를 Graph DB로 사용하기 https://news.hada.io/topic?id=3477
