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

Popular posts from this blog

Python __call__ special method practical example -

arrays - jQuery - Retrieve values from HTML elements and return their sum -