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

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -