1
I need to get all columns of a table and more a custom column in the same query, I tried this way:
SELECT (SELECT * FROM clans WHERE ID=1), (SELECT COUNT(*) FROM contas WHERE Clan=1) AS Membros;
You are giving error by trying to get more than one column by SELECT.