3
Answers

Query

Danish Habib

Danish Habib

8y
378
1
I want to get the data from two tables from one table i want to get all the data and from second table i want just one column i have a relationship between the tables 
 
SELECT * from First,S.CodeName
INNER JOIN second AS S on Second.RID=First.RId
 
 
1-one way is to get all the columns from first table by name to name like i have to include all the columns just like that
SELECT F.Name,F.Code,F.Date from First
INNER JOIN Second as S ON s.Code=F.Code
Oder by F.Code
 
 
---This works fine but i want to know other way how to used Select * and a specific column in one query please assists  
Answers (3)
0
Rafnas T P

Rafnas T P

NA 12.2k 435.6k 8y
I don't want all time tab index disabled
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 8y
set tabindex = -1 to all control..
0
Tapan Patel

Tapan Patel

NA 8.1k 100.9k 8y
Here is how. You can define IsTabStop property to false for the other controls and it should work for you.
  1. <Buttonx:Name="button"Content="Button"HorizontalAlignment="Left"Margin="242,107,0,0"VerticalAlignment="Top"Width="75"TabIndex="1000000"IsTabStop="False"/>
  2. <TextBoxx:Name="textBox"HorizontalAlignment="Left"Height="23"Margin="204,67,0,0"TextWrapping="Wrap"Text="TextBox"VerticalAlignment="Top"Width="120"TabIndex="0"/>