Create table mine (id integer);
insert into mine(id) values (0),(1),(2),(3),(0),(1);
select * from mine;
[Nets 0,1,2,3,0,1]
select * from mine where id = "Test";
[0,0]
select * from mine where id != "Test";
[1,2,3,1]
The internal monologue of a software engineer.
No comments:
Post a Comment