Question : How to Visualize linking between tables

Experts
Please see the image attached here and please tell me how to link the  tables which are linked  by the PK and FK.
Thanking you,
Anindya
Attachments:
 
 

Answer : How to Visualize linking between tables

For a specific folder?

If so, you could try something like this (strCount is the resulting variable):


1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
Set fso = CreateObject("Scripting.FileSystemObject")
strFolder = "C:\Temp"

Set objFolder = fso.GetFolder(strFolder)
Set objFiles = objFolder.Files

strCount = 0

For each objFile in objFiles
If Ucase(Left(objFile.Name, 3)) = "QUA" Then
Result = DateDiff("d", Date, objFile.DateCreated)
	If Result = 0 then
	strCount = strCount + 1
	End If
End If
Next

Wscript.Echo strCount
Random Solutions  
 
programming4us programming4us