The visibility of table created in with clause is only in the SET part.

The following is a valid sql statement in sqlite3.

with ds as (select id, a , b, c  from some_table where c = 43)
update temp_table set id = (select ds.id from ds where ds.a = temp_table.a  AND 
ds.b = temp_table.b),  operation = 'UPDATE';

Have to take care using case statement when a match is not found.


Fiberlink Disclaimer: The information transmitted is intended only for the 
person or entity to which it is addressed and may contain confidential and/or 
privileged material.  Any review, retransmission, dissemination or other use 
of, or taking of any action in reliance upon, this information by persons or 
entities other than the intended recipient is prohibited.  If you received this 
in error, please contact the sender and delete the material from any computer.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to