Issue
How to create a table which is included this by MySQL command without using Manual input, see the pic blow:
Solution
You can use this SQL to create a table name as: published
CREATE TABLE published (
`is_published` BOOLEAN NOT NULL DEFAULT true
) ENGINE=InnoDB;
Answered By - VishnuPrasad
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.