Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tCreateTable and auto_increment

Hello every body
I looking for creating a table in MySQL RDMS with a auto_increment column.
I think that tCreateTable component is a good choice, but this option is not available.
Thank you for all ideas.
Best regards
Max
Labels (2)
2 Replies
youssef2
Contributor
Contributor

Hi,
Did you try tMySqlRow with your specific SQL, for example:
CREATE TABLE employes (
id MEDIUMINT NOT NULL AUTO_INCREMENT,
name CHAR(30) NOT NULL,
PRIMARY KEY (id)
);

Regards,
Youssef
Anonymous
Not applicable
Author

Thank you very much Youssef, it's simple.
I never use this component.
In the future I think mostly use it.
Best regards
Max