'Declaration Public NotInheritable Class SelectTable Inherits SelectStatementNode
public sealed class SelectTable : SelectStatementNode
'Declaration Public NotInheritable Class SelectTable Inherits SelectStatementNode
public sealed class SelectTable : SelectStatementNode
This example shows how SelectTables can be used to create a SelectStatement object representing the following query:
SELECT * FROM test.dept tDept, test.emp tEmp
SQLiteSelectStatement statement = new SQLiteSelectStatement(); statement.Columns.Add("*"); // Create SelectTables, specify their schemas, names and aliases. SelectTable dept = new SelectTable("test", "dept", "tDept"); SelectTable emp = new SelectTable("test", "emp", "tEmp"); statement.Tables.Add(dept); statement.Tables.Add(emp);
Dim statement = New SQLiteSelectStatement() statement.Columns.Add("*") ' Create SelectTables, specify their schemas, names and aliases. Dim dept = New SelectTable("test", "dept", "tDept") Dim emp = New SelectTable("test", "emp", "tEmp") statement.Tables.Add(dept) statement.Tables.Add(emp)
System.Object
Devart.Common.SelectStatementNode
Devart.Common.SelectTable