Server IP : 172.67.216.182 / Your IP : 108.162.226.18 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/ndb/r/ |
Upload File : |
DROP TABLE IF EXISTS t1,t2,t3; DROP VIEW IF EXISTS v1,v2,v3; create table t1 (a int, b int, c int, d int) engine=ndb; insert into t1 values (1,2,3,4),(5,6,7,8); create view v1 as select t1.c as a, t1.a as b, t1.d as c, t1.a+t1.b+t1.c as d from t1; select * from v1 order by a,b,c; a b c d 3 1 4 6 7 5 8 18 update v1 set a=a+100 where b=1; select * from v1 order by a,b,c; a b c d 7 5 8 18 103 1 4 106 drop view v1; create view v1 as select t1.c as a from t1; insert into v1 values (200); select * from t1 order by a,b,c,d; a b c d NULL NULL 200 NULL 1 2 103 4 5 6 7 8 drop view v1; drop table t1;