Do you have any idea why this won't work?
I want to create a table then add items to it and display it. It should be simple but every time I try I get a crash or an error.
CREATE TABLE test 
(a varchar(255),
    b varchar(255),
    c varchar(255),
    d varchar(255)
);
insert into test
(a,b,c,d)
Values
('dd','tt','te','rt');
select * from test
 
    