Created
March 16, 2023 01:58
-
-
Save tdunning/d1970aec133e96fe4c8cbb4515ecb8aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pragma version; | |
CREATE TABLE distributors ( | |
did integer CHECK (did > 100), | |
name varchar(40) | |
); | |
insert into distributors values (200, 'a'); | |
insert into distributors values (201, 'b'); | |
select min(columns('d.*')) from distributors; | |
select * exclude did from distributors; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment