Comments Rene started the conversationNovember 22, 2020 at 10:52amI have 2 different tables with the same number of columns. How can I connect them? 2,572Aleksandar repliedNovember 23, 2020 at 9:37pmHello ReneThank you for your purchase.I'm sorry, I can't understand what you're asking. Do you want to join two tables into one, or connect values from one table with another?Please explain to me what you're trying to do, and I'll try to help you out.Kind Regards, Aleksandar Vuković[email protected] Rate my support wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community You can try wpDataTables add-ons before purchasing on these sandbox sites: Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail TablesRene repliedDecember 7, 2020 at 12:52pmHello yes i want to connect values from one table with another.Example:Table 1: Table 2:Maschine Time Maschine PriceA 34 A 100B 50 B 150Result:Maschine Time PriceA 34 100B 50 150Thank you very much.Best regardsRene 2,572Aleksandar repliedDecember 8, 2020 at 10:18amHello again ReneSomething like this is best done with SQL query based tables. If you're not that familiar with SQL, you can use our query constructor.Another option would be to use foreign keys, but in that case you would need to manually select the data for each column and row.Kind Regards, Aleksandar Vuković[email protected] Rate my support wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community You can try wpDataTables add-ons before purchasing on these sandbox sites: Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail TablesRene repliedDecember 8, 2020 at 11:40amHello,i already had a solution with the "with" command, unfortunately WP Data tables does not take a "with" command.Maybe you can give me an example? I will look further. Thanks againBest regardsRene 2,572Aleksandar repliedDecember 9, 2020 at 12:49pmI'm not sure about this, Rene, but you can try: SELECT table1.`Machine`, table1.`Time`, table2.`Price` FROM table1 INNER JOIN table2 ON table1.`Machine` = table2.`Machine` Of course, you need to modify table1 and table2 so it represents the table name in the database, and also make sure the headers are correct.Kind Regards, Aleksandar Vuković[email protected] Rate my support wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community You can try wpDataTables add-ons before purchasing on these sandbox sites: Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables Sign in to reply ...
I have 2 different tables with the same number of columns. How can I connect them?
Hello Rene
Thank you for your purchase.
I'm sorry, I can't understand what you're asking. Do you want to join two tables into one, or connect values from one table with another?
Please explain to me what you're trying to do, and I'll try to help you out.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hello
yes i want to connect values from one table with another.
Example:
Table 1: Table 2:
Maschine Time Maschine Price
A 34 A 100
B 50 B 150
Result:
Maschine Time Price
A 34 100
B 50 150
Thank you very much.
Best regards
Rene
Hello again Rene
Something like this is best done with SQL query based tables. If you're not that familiar with SQL, you can use our query constructor.
Another option would be to use foreign keys, but in that case you would need to manually select the data for each column and row.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hello,
i already had a solution with the "with" command, unfortunately WP Data tables does not take a "with" command.
Maybe you can give me an example?
I will look further.
Thanks again
Best regards
Rene
I'm not sure about this, Rene, but you can try:
Of course, you need to modify table1 and table2 so it represents the table name in the database, and also make sure the headers are correct.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables