Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~551 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for LONGWAY

How are the four tables related? Are there primary keys / foreign key relationships between the tables.

Member Avatar for rpk2006
0
143
Member Avatar for kiranbvsn

Hi Are the four tables related in any way? Is there a primary key / foreign key relationship between the tables... If not you could try the following: [CODE] SELECT INTO New_Table table1.a, table1.b, table2.g, table3.j, table3.k, table4.n, table4.p FROM table1, table2, table3, table4 [/CODE] If the tables are related …

Member Avatar for kiranbvsn
0
107
Member Avatar for bruceoz

Hi folks I need some help! I have two tables the first contains account information, and the second contains flags that records in the account table may have. These are joined by the account?id. One account record may have several flags from the flag table. ie the following select select …

Member Avatar for bruceoz
0
142
Member Avatar for Nfurman

Hi, Have you tried using the group by clause ie Select count (*) as total, country_name from your_table_name group by country_name

Member Avatar for jaikanth123
0
159

The End.