···
Sign in
···
···
sql
hashtag
383.81
About
Reviews
Updates
1
Followers
0
Experts
Experts
arcange
158.37
· 20590
oflyhigh
72.63
· 9769
geekgirl
51.97
· 5547
edicted
19.77
· 4420
sqlinsix
12.17
· 280
Show more authors
Posts
Threads
serpent7776
54.00
3 months ago
The need for workarounds like this is the reason I don't like #SQL https://images.d.buzz/file/dbuzzimages/pg-with-distinct.png Posted vi...
serpent7776
54.00
5 months ago
Have you ever had the need for a JOIN on expression other than = ? #sql ...
... #postgresql Posted via D.Buzz
serpent7776
54.00
5 months ago
Announcing pg_snowflake, a #sql #postgresql extension for creating customisable ...
... snowflake ID types. https://github.com/serpent7776/pg_snowflake Posted via D.Buzz
geekgirl
2 K
6 months ago
Hive.Blog
SQL Query to Get Column Name & Value Pairs | Understanding Database Structure
SELECT * FROM SAMPLE_TABLE FOR JSON PATH The line of SQL code above is what I have been looking for in the last couple of weeks. I alwa...
louis88
19.5 K
7 months ago
PeakD
Updates on my Hive Post Payout Dashboard (using HafSQL) / New Endpoint for mahdiyari.info
I have just updated the small help tool “Hive Post Payout Dashboard (using HafSQL)” to a new host endpoint, as the dear @mahdiyari will s...
simplestack
0.09
8 months ago
PeakD
TypeOrm View Entities Explained
A View Entity in TypeOrm is like a virtual table that pulls data from your database view. Creating one is simple! Just define a new clas...
serpent7776
54.00
8 months ago
Writing query creating #sql function that is run inside plpython function created ...
... in sql file is next level sql skill. #postgresql Posted via D.Buzz
serpent7776
54.00
8 months ago
#sql is nice, high level language they said. Focus on the meaning of the query ...
... and let the optimiser choose the right plan they said. And then you extract part of the big query as a VIEW and suddenly the perform...
vaipraonde
1.4 K
8 months ago
PeakD
Release of HiveSQL Discord Bot with AI Capabilities
GM HiveDevs! In my last post, I introduced the HiveSQL AI Bot, a tool that combines Discord, HiveSQL database querying, and AI capabiliti...
vaipraonde
1.4 K
9 months ago
PeakD
Querying HiveSQL with AI: Goodbye Complex SQLs!
Hey there, HiveDevs! Yesterday I needed to query HiveSQL to get some statistics from PixBee, and I had an idea: why not use AI to create ...
waivio_jeff-sealsre
0.00
9 months ago
Waivio
SQL Server: A Comprehensive Guide
SQL Server, developed by Microsoft, is a relational database management system (RDBMS) that provides a powerful and scalable solution for...
serpent7776
54.00
9 months ago
I just spent a few hours trying to fix failing tests after a change. Turned out ...
... it mas missing LEFT in a JOIN. ._. #sql Posted via D.Buzz
dusunenkalpp
849.98
10 months ago
Hive.Blog
(EN-TR) SQL CODES -- I SHARE WHAT I'VE LEARNED///SQL KODLARI -- ÖĞRENDİKLERİMİ PAYLAŞIYORUM
EN Hello Today I started my SQL lessons, today I understood better how queries are made via SQL. I will try to share what I learned in t...
gunu1
91.35
11 months ago
SQL TUTORIALS [001]
▶️ Watch on 3Speak This is a new tutorial series on Structured Query Language(SQL), I will start from the basics to advanced concepts li...
hanabi916
0.00
11 months ago
PeakD
HiveSQL Upate - New Blacklists and Mutes tables
The concept of decentralized blacklists and mutes lists was introduced by @blocktrades some time ago. These lists are recorded in the bl...
hivesql
11.40
11 months ago
PeakD
HiveSQL Proposal - Keep It Free To Use For The Community
TLDR; The active HiveSQL proposal will expire at the end of this month. This new proposal aims to continue to provide free access to Hi...
serpent7776
54.00
last year
#postgresql query that returns active queries. #sql https://images.d.buzz/sql-active-queries.png.png Posted via D.Buzz
serpent7776
54.00
last year
ON CONFLICT REPLACE in #sqlite deletes the conflicting row and inserts a new one. ...
... This means that the primary key will be changed unless you specify it directly. Use INSERT ... ON CONFLICT DO UPDATE to keep the old...
small.minion
55.54
last year
Hive application development guide
Hi Everyone ❗❗ Especially HiveFest 2024 visitors who are interested in simplified and efficient application development for Hive Platform...
serpent7776
54.00
last year
#sqlite has implicit ROWID/OID integer column. #sql https://images.d.buzz/SQLite-Autoincrement.png.png Posted via D.Buzz
serpent7776
54.00
last year
To select results that are distinct on a single column you can use `distinct on ...
... (column)` syntax. #sql #postgresql https://images.d.buzz/sql-distinct-on.png.png Posted via D.Buzz
serpent7776
54.00
last year
Converting json to columns in #postgresql #sql https://images.d.buzz/sql-jsonb-to-record.png.png Posted via D.Buzz
serpent7776
54.00
last year
List size of #postgresql tables and their indices order by the latter. #sql https://images.d.buzz/pg-sql-table-sizes.png.png Posted via ...
serpent7776
54.00
last year
This one does not spark joy. #ocaml #sql https://images.d.buzz/sql-exec.png.png Posted via D.Buzz
red-zone
0.00
last year
Introduction
INTRODUCTION My name is Chaitanya Sharma and I, along with my hackmates, Introducing the Eco Guardian Battery, the next generation of e...
sweethoney
16.06
last year
Hive.Blog
Composite Primary Key
Composite Primary Key 用两个column作为primary key foreign key is the column used to connect 2 tables in order to create cross referencing betw...
sweethoney
16.06
last year
Hive.Blog
SQL writing for 10 June 2024
Relation = A relation represents a file that stores data. It’s also known as a table. Domain = The domain is a set of acceptable values t...
sweethoney
16.06
last year
Hive.Blog
How to refer the foreign key in correspond table to reference table
Create table cart_order( order_id INT, customer_id INT, product_id INT, quantity INT, order_date DATE, status VARCHAR(100), PRIMARY KEY (...
sweethoney
16.06
last year
Hive.Blog
SQL for 5th June
Select * From student_tbl (table name) Where faculty LIKE 'Sc%' ; within the faculty column that start with Sc followed by any number of ...
sweethoney
16.06
last year
Hive.Blog
SQL for 30 MAy2024
DML and DDL are both subsets of SQL (Structured Query Language) used for database management, but they serve different purposes: DDL (...