[Solved] How to write attribute name on two lines in a SQL Query
When naming a column in a simple SELECT statement like so: SELECT stuff FROM someTable Which will print out like so: —-stuff—- — foo — bar You can name the column stuff to whatever you like by using single quotations and the AS alias identifier, like so: SELECT stuff AS ‘Stuff Column’ FROM someTable This … Read more