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

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

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -