michaeljinxq opened a new issue #2226: select * missing column
URL: https://github.com/apache/incubator-shardingsphere/issues/2226
 
 
   (1)alter table my_orders add dc decimal(10,2);
   
   (2)
   show create table my_orders\G
   create table my_orders (
   id int(10) not null auto_increment,
   name varchar(40) default null,
   create_time datetime default null,
   age int(11) default null,
   ttt datetime(3) default null,
   dc decimal(10,2) default null,
   primary key (id)
   )engine=innodb default charset=utf8;
   
   (3)
   insert into my_orders (name,create_time,age) values ('ruiaylin1','2019-04-16 
18:00:00',15);
   
   (4)dc column missing
   select * from my_orders;
   id     name         create_time         age     ttt     
   1   ruiaylin1   2019-04-16 18:00:00      15     NULL
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to