Tag: SQL

11 items found

Project

Senkora: Database Management Interface

Secure web-based access and query management for MSSQL databases. Flask + Tabler UI, CodeMirror SQL editor, Windows and macOS support.

Glossary

Database Indexing

Database indexing creates auxiliary data structures on selected columns so queries find rows faster without scanning every record.

Glossary

Database Normalization

Database normalization organizes relational tables around dependencies to reduce duplication and protect consistency as data changes.

Glossary

Database Transaction

A database transaction groups reads and writes into one unit of work that either commits completely or rolls back safely.

Glossary

Foreign Key

A foreign key links a value in one table to a key in another table, preserving referential integrity in relational databases.

Glossary

MySQL

MySQL is a relational database that stores SQL data in tables, indexes, and transactions, widely used behind web applications and services.

Glossary

PostgreSQL

PostgreSQL is an open-source ACID-compliant relational database that combines SQL, JSON support, indexing, and extensibility.

Glossary

Primary Key

A primary key is a non-null, non-repeating column or column set that uniquely identifies each row in a database table.

Glossary

Query Optimization

Query optimization improves database queries by reducing reads, choosing useful indexes, and shaping efficient execution plans.

Glossary

SQL (Structured Query Language)

SQL is the standard language for querying, changing, and reporting on structured data stored in relational database tables.

Glossary

Stored Procedure

A stored procedure is a named SQL block saved in the database and called with parameters to run repeatable data operations.