Из следующего кода мне нужно извлечь только то, что в скобках, не потребляя их.
create table if not exists `va_lottery`.`iso_4217`
(
ccodealpha char(3) not null comment 'ISO alpha.',
ccodenumeric char(3) not null comment 'ISO numeric',
cminorunit varchar(4) default 0 comment 'Minor unit.',
cname varchar(80) not null comment 'Name of the currency.',
centity varchar(100) not null comment 'Entity.'
)
engine=innodb comment='ISO codes of coins.';
То есть.Извлеките только следующие строки кода.
ccodealpha char(3) not null comment 'ISO alpha.',
ccodenumeric char(3) not null comment 'ISO numeric',
cminorunit varchar(4) default 0 comment 'Minor unit.',
cname varchar(80) not null comment 'Name of the currency.',
centity varchar(100) not null comment 'Entity.'
Спасибо за помощь, которую вы можете оказать мне.