Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does the FOR Clause not work with an alias in SQL Server 2016 with temporal tables?

I have a SQL Server 2016 database with temporal tables. One temporal table is called Company. I am trying to query it to get current records and all historical records. I first tried the following query:

select *
from Company c
FOR SYSTEM_TIME all

and got the following error: Incorrect syntax near 'FOR'.

However, if I try it without the alias it works fine:

select *
from Company
FOR SYSTEM_TIME all

I could not find any documentation about this- is it a legitimate constraint, a known issue, or something else?

like image 737
jsakowitz Avatar asked Jun 02 '17 20:06

jsakowitz


Video Answer


1 Answers

This worked for me

select *
from Company FOR SYSTEM_TIME all c
like image 113
veeroo Avatar answered Nov 15 '22 08:11

veeroo