- Machine Learning With Go
- Daniel Whitenack
- 130字
- 2021-07-08 10:37:27
SQL-like databases
Although there is a good bit of hype around interesting NoSQL databases and key-value stores, SQL-like databases are still ubiquitous. Every data scientist will, at some point, be processing data from an SQL-like database, such as Postgres, MySQL, or SQLite.
For example, we may be required to query one or more tables in a Postgres database to generate a set of features for model training. After using that model to make predictions or identify anomalies, we may send results to another database table that drives a dashboard or other reporting tool.
Go, of course, interacts nicely with all the popular data stores, such as SQL, NoSQL, key-value, and so on, but here, we will focus on SQL-like interactions. We will utilize database/sql for these interactions throughout the book.
- Vue 3移動(dòng)Web開發(fā)與性能調(diào)優(yōu)實(shí)戰(zhàn)
- Cross-platform Desktop Application Development:Electron,Node,NW.js,and React
- Mastering QGIS
- 小學(xué)生C++創(chuàng)意編程(視頻教學(xué)版)
- 大學(xué)計(jì)算機(jī)基礎(chǔ)實(shí)驗(yàn)指導(dǎo)
- Mastering Android Development with Kotlin
- Learning SciPy for Numerical and Scientific Computing(Second Edition)
- AIRIOT物聯(lián)網(wǎng)平臺(tái)開發(fā)框架應(yīng)用與實(shí)戰(zhàn)
- RESTful Java Web Services(Second Edition)
- OpenResty完全開發(fā)指南:構(gòu)建百萬級(jí)別并發(fā)的Web應(yīng)用
- Canvas Cookbook
- Visual Basic程序設(shè)計(jì)習(xí)題與上機(jī)實(shí)踐
- 大學(xué)計(jì)算機(jī)基礎(chǔ)實(shí)驗(yàn)指導(dǎo)
- 深入解析Java編譯器:源碼剖析與實(shí)例詳解
- 嵌入式Linux C語言程序設(shè)計(jì)基礎(chǔ)教程