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?
This worked for me
select *
from Company FOR SYSTEM_TIME all c
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With