I couldn't find the answer to my specific question anywhere.
Is it possible to select from two different views? For example my code looks something like this right.
select view1.col1, view1.col2, view1.col3
from dbo.view1
inner join ~~~~~
inner join ~~~~~
but I want to include a column from a different view in the same query like this.
select view1.co1, view1.col2, view1.col3, view2.col1
from dbo.view1,
dbo.view2 (this is the line im not sure is possible or allowed)
inner join ~~~~~~
inner join ~~~~~
Is it possible to use the different views as sources for my one select statement or is that not possible in SQL?
I am using SQL server as my database engine.