Article Preview
Buy Now
COLUMN
SQL
A Brief Discussion on SQL
Issue: 19.6 (November/December 2021)
Author: Vince Du Beau
Author Bio: Vince is an experienced Filemaker developer. He is exploring Xojo as an alternative to Filemaker.
Article Description: No description available.
Article Length (in bytes): 4,601
Starting Page Number: 75
Article Number: 19610
Related Link(s): None
Excerpt of article text...
I'm sure as Xojo users you are familiar with using SQL.
Structured Query Language (SQL—pronounced "Sequel") is the definitive language used to manage relational databases. SQL includes commands for database queries, Data Definition, Data control, and data manipulation.
Data Definition
The data defintion Language (DDL) part of SQL uses the
create
statement to define your Tables and Columns (Rows). This samplecreate
statement is from my previously mentioned invoice program:
BEGIN TRANSACTION;
...End of Excerpt. Please purchase the magazine to read the full article.