--sourceinclude/have_ndb.inc--sourceinclude/not_embedded.inc--disable_warningsDROPTABLEIFEXISTSt1,t2,t3;DROPVIEWIFEXISTSv1,v2,v3;--enable_warnings## simple operations via view#createtablet1(aint,bint,cint,dint)engine=ndb;insertintot1values(1,2,3,4),(5,6,7,8);createviewv1asselectt1.casa,t1.aasb,t1.dasc,t1.a+t1.b+t1.casdfromt1;select*fromv1orderbya,b,c;updatev1seta=a+100whereb=1;select*fromv1orderbya,b,c;dropviewv1;createviewv1asselectt1.casafromt1;insertintov1values(200);select*fromt1orderbya,b,c,d;dropviewv1;droptablet1;