can php adodb do Common Table Expressions? -
i'm using adodb php library (http://phplens.com/adodb/) connect sql server 2005, can common table expressions used in execute method?
as long sql passed through without modifications (which assume does) you'll able use ctes, yes.
a simple test this:
with cte ( select * mytable ) select * cte;
Comments
Post a Comment