Can show the comments writing in the create table command?
0
votes
1
answer
914
views
We can write comment to create a table:
create database
mytest
;
use mytest
;
create table mytest
(
/* mytest mytest */
code
varchar(15) NOT NULL,
type
varchar(20) NOT NULL
);
How can show the comment /* mytest mytest */
in create table command?
show create table mytest;
+--------+------------------------------------+
| Table | Create Table |
+--------+------------------------------------+
| mytest | CREATE TABLE mytest
(
code
varchar(15) NOT NULL,
type
varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
Asked by showkey
(386 rep)
Aug 15, 2021, 01:54 PM
Last activity: Aug 16, 2021, 07:21 PM
Last activity: Aug 16, 2021, 07:21 PM