sql - How to create a new column in a select query -


in ms access, want insert new column returned result of select query. new column has same value every row. example, select returns columns a, b , want c new column created select query:

a   b   c ---------- a1  b1  c a2  b2  c a3  b3  c 

select a, b, 'c' c mytable 

Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -