Edit: try again.
In a SQL related question, when the OP gives a code table such as:
Department | Category |
0001 | A |
0002 | D |
0003 | A |
0003 | A |
0003 | C |
0004 | B |
It would save time for someone answering to be able to click a button in SO and be linked to a SQL DDL script that would actually create the table for them, if they pasted it into their favourite db admin program, i.e. generates Shannon's code:
create table T (
Department varchar(10) null,
Category varchar(10) null
);
-- Original test case
insert into T values ('0001', 'A');
insert into T values ('0002', 'D');
insert into T values ('0003', 'A');
insert into T values ('0003', 'A');
insert into T values ('0003', 'C');
insert into T values ('0004', 'B');
-- Null Test cases:
insert into T values (null, 'A');
insert into T values (null, 'B');
insert into T values (null, 'B');
insert into T values ('0005', null);
insert into T values ('0005', null);
insert into T values ('0005', 'X');
-- Tie Test case
insert into T values ('0006', 'O');
insert into T values ('0006', 'P');
It occurred to me after posting a simple SQL table example that it would be a useful timesaving device to have a also posted a create table DDL script so that it was easier to work/test on. Often though you post pseudo-data rather than real columns, so I was thinking about a code syntax that the OP could use and then others could click a button to generate the SQL CREATE TABLE syntax for the schema and for the data. See Shannon Severance's answer to the question for sample code, generated from what could be a CSV-ish syntax - need to preserve the readability which is why commas aren't a good idea, but: first line headers, everything else data, trimmed and bars removed:
Department | Category |
0001 | A |
0002 | D |
0003 | A |
0003 | A |
0003 | C |
0004 | B |
Just seemed a useful timesaver and an incentiviser to get into the question.