Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
singlestore-labs
GitHub Repository: singlestore-labs/singlestoredb-python
Path: blob/main/examples/test.sql
469 views
1
CREATE TABLE people (
2
id BIGINT,
3
first_name CHAR(30),
4
last_name CHAR(50)
5
);
6
7