Then one could interact with BSV as a relational database u…
Then one could interact with BSV as a relational database using commands such as
CREATE DATABASE dataquestDB;
CREATE TABLE customers (
customer_id int,
name varchar(255),
age int
);
SELECT * FROM customers;
SELECT TOP 50 * FROM customers;
etc ...