0

How to add an extra column with a specified value to log parser results?

Thanks in advance!

user3714811
  • 73
  • 1
  • 5

1 Answers1

0

Just add it to the select clause:

SELECT
  Field1,
  Field2,
  'This is my fake column' AS MyField3
FROM
  ...
Gabriele Giuseppini
  • 1,541
  • 11
  • 19