Deck 11: Databases

ملء الشاشة (f)
exit full mode
سؤال
Most database tables have a(n) ____________, which is a column that can be used to identify a specific row.

A) identifier
B) primary key
C) key word
D) column name
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
A ____________ is a complete set of information about a single item in a table.

A) bit
B) column
C) cell
D) row
سؤال
A ____________ can display an entire database table in a scrollable grid on an application's form.

A) BindingNavigator control
B) DataSet control
C) Chart control
D) DataGridView control
سؤال
If a column contains no data, it is said to be ____________.

A) null
B) empty
C) void
D) open
سؤال
In a database, each ____________ holds a collection of related data items.

A) spreadsheet
B) record
C) table
D) object
سؤال
Once data items are stored using a database management system, applications may be written in ____________ to communicate with the DBMS.

A) Java
B) C#
C) Visual Basic
D) any of these
سؤال
A(n) ____________ is a column that contains unique values generated by the DBMS, usually using a counter.

A) primary key
B) identity column
C) key column
D) generated field
سؤال
A ____________ is a component that can connect user interface controls directly to a dataset.

A) table binder
B) grid viewer
C) binding source
D) data source
سؤال
A ____________ connects to a data source and can retrieve and update data from a table in a data source.

A) source reference
B) table connection
C) table adapter
D) binding source
سؤال
The DBMS works directly with the data and sends the results of operations back to the ____________.

A) application
B) data
C) DBMS
D) CPU
سؤال
A(n) ____________ is software specifically designed to store, retrieve, and manipulate large amounts of data in an organized and efficient manner.

A) search engine
B) database management system (DBMS)
C) integrated development environment (IDE)
D) productivity suite
سؤال
A ____________ is a source of data with which the application can work. Examples are databases, and Excel spreadsheets.

A) data source
B) table copy
C) binding source
D) dataset
سؤال
When specifying a data type for the columns in a database table, the data types you can choose from are provided by the ____________.

A) DBMS
B) programming language
C) computer manufacturer
D) compiler
سؤال
A ____________ is a set of individual controls that are bound to the columns in a single row. For example, it might display multiple data items for a single student.

A) Details view
B) Multi-viewer
C) Column browser
D) Row navigator
سؤال
When an application runs for the first time, Visual Studio copies the database file from the project folder to the project's ____________, which is the bin/Debug folder.

A) data folder
B) table folder
C) output folder
D) hidden folder
سؤال
____________ is automatically installed on your system when you install Visual Studio.

A) Oracle
B) DB2
C) MySQL
D) Microsoft SQL Server Express Edition
سؤال
A ____________ gets a copy of a table from the table adapter and keeps the copy of the table in memory.

A) record locker
B) data source
C) table copier
D) dataset
سؤال
A database management system stores data in a ____________ .

A) text file
B) binary file
C) database
D) source file
سؤال
A ____________ is a user interface control that is connected to a data source.

A) table control
B) data-bound control
C) UI data-viewer
D) database module
سؤال
Each _________ in a table holds an individual piece of information about all items in the table.

A) tier
B) row
C) column
D) block
سؤال
In SQL, the ____________ requires that both search criteria be true in order for a row to be qualified as a match.

A) Or operator
B) Also keyword
C) & character
D) And operator
سؤال
The ____________ identifies a column from the table to display in a ListBox control.

A) ShowColumn property
B) column name
C) DisplayMember property
D) DataSource property
سؤال
In SQL, the ____________ can be used to search for a substring.

A) Sub method
B) Contains statement
C) Who instruction
D) Like operator
سؤال
When you use the ____________ in a Select statement, only the rows that meet the search criteria are returned.

A) Ask keyword
B) Where clause
C) ? operator
D) Find expression
سؤال
In SQL, you use keywords to construct statements, which are also known as ____________.

A) queries
B) expressions
C) determinants
D) solutions
سؤال
SQL, which stands for ____________, is a standard language for working with database management systems.

A) simultaneous query logic
B) structured query language
C) sequential query language
D) standard quasi language
سؤال
In SQL, the ____________ is used as a wildcard character, and can be used to represent any sequence of zero or more characters.

A) ^ symbol
B) Wild operator
C) % symbol
D) * character
سؤال
The ____________ identifies the table from which the data-bound control will get its data.

A) DataSource property
B) Table property
C) primary key
D) DisplayMember property
سؤال
In SQL, the ____________ calculates the average value in a particular column.

A) Average function
B) # symbol
C) Avg function
D) SQL_Average statement
سؤال
When working with data-bound controls on multiple forms, you can make sure that a dataset contains a current copy of the data by calling the table adapter's ____________.

A) Sync method
B) Refresh method
C) Fill method
D) Clear method
سؤال
In SQL, strings are enclosed in ____________.

A) single quotes
B) underscores
C) asterisks
D) brackets
سؤال
In SQL, you use the ____________ to retrieve the rows in a table.

A) Read statement
B) Get expression
C) Select statement
D) Row keyword
سؤال
If you wish to sort the results of an SQL Select query, you can use the ____________.

A) Order By clause
B) List keyword
C) Index method
D) @ operator
سؤال
SQL provides the ____________ for determining the number of matching rows in a table.

A) Rows function
B) Count function
C) Max function
D) Volume function
سؤال
In an SQL statement, a query parameter variable begins with the ____________.

A) param keyword
B) var operator
C) @ symbol
D) ref clause
سؤال
A(n) ____________ is an SQL statement stored in a table adapter object, which can be executed simply by calling a method.

A) dataset macro
B) columnar directive
C) table adapter query
D) referenced subroutine
سؤال
When you click on the ____________ in a data-bound control, a tasks panel will appear, giving you a number of options you can perform.

A) options check box
B) smart tag
C) view button
D) taskbar
سؤال
A ____________ is a file, ending with the .xsd extension, which describes the contents of a dataset.

A) schema definition file
B) extensible schema data file
C) extended source file
D) data exclusion file
سؤال
When developing applications that work with an intensive amount of data, most developers prefer to use a database management system.
سؤال
If an application needs to store only a small amount of data, sequential and binary files are efficient and easy to use.
سؤال
Data stored in databases is organized into one or more tables.
سؤال
When you make changes to a database table in one form, the changes automatically appear in other forms that connect to the same table using their own datasets.
سؤال
A .NET application requires a set of special components that let it connect to, and work with, a database.
سؤال
When you use Visual Studio to create a database, the database file will be created in the project folder.
سؤال
When you place a data-bound control on a form, keep in mind that Visual Studio does not automatically generate the code needed for the control to display any data from the database table.
سؤال
Rather than displaying multiple rows at once, a Details view lets the user see one row at a time.
سؤال
Each column in a table must have a name.
سؤال
SQL is a general purpose programming language, which can be used to write applications.
سؤال
The application handles the mechanical details reading of, writing of, and searching for data in a database.
سؤال
When you create a database table, you must specify a data type for each column.
سؤال
Each subsequent time an application runs, it connects to the copy of the database in the output folder, rather than the project folder.
سؤال
Rather than retrieving or manipulating the data directly, applications send instructions to the DBMS, and the DBMS carries out those instructions and sends the results back to the application.
سؤال
Data stored in a database table's column is divided into tables.
سؤال
Data-bound controls automatically display data from a data source and can be used to modify the data they are bound to.
سؤال
To bind a ListBox control to a column, you must set two of the controls properties: DataSource and DisplayMember.
سؤال
It is possible to change the type of control that a column is bound to in a Details view.
سؤال
Data stored in a database table is organized into rows and columns.
سؤال
The table row designated as the primary key must hold a unique value for each column.
سؤال
The table column designated as the primary key must hold a unique value for each row.
سؤال
There are numerous DBMSs in use today, and Visual C# can interact with many of them.
سؤال
In SQL, if you need to include a single quote as part of a string, simply write two consecutive single quotes in its place.
سؤال
SQL uses database mnemonics to construct statements, which are also known as table adapter queries.
سؤال
The equal to and not equal to operators in SQL are different from those in C#.
سؤال
SQL provides several functions for performing calculations.
سؤال
In SQL, the asterisk symbol is used as a wildcard to represent a single character.
سؤال
The Not operator can be used in SQL to disqualify a character pattern in a search criteria.
سؤال
The Desc operator can be used to sort the results of an SQL Select query in descending order.
سؤال
You can add your own SQL queries to a table adapter and call them from your C# code.
سؤال
SQL does not support relational operators.
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/69
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 11: Databases
1
Most database tables have a(n) ____________, which is a column that can be used to identify a specific row.

A) identifier
B) primary key
C) key word
D) column name
B
2
A ____________ is a complete set of information about a single item in a table.

A) bit
B) column
C) cell
D) row
D
3
A ____________ can display an entire database table in a scrollable grid on an application's form.

A) BindingNavigator control
B) DataSet control
C) Chart control
D) DataGridView control
D
4
If a column contains no data, it is said to be ____________.

A) null
B) empty
C) void
D) open
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
5
In a database, each ____________ holds a collection of related data items.

A) spreadsheet
B) record
C) table
D) object
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
6
Once data items are stored using a database management system, applications may be written in ____________ to communicate with the DBMS.

A) Java
B) C#
C) Visual Basic
D) any of these
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
7
A(n) ____________ is a column that contains unique values generated by the DBMS, usually using a counter.

A) primary key
B) identity column
C) key column
D) generated field
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
8
A ____________ is a component that can connect user interface controls directly to a dataset.

A) table binder
B) grid viewer
C) binding source
D) data source
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
9
A ____________ connects to a data source and can retrieve and update data from a table in a data source.

A) source reference
B) table connection
C) table adapter
D) binding source
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
10
The DBMS works directly with the data and sends the results of operations back to the ____________.

A) application
B) data
C) DBMS
D) CPU
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
11
A(n) ____________ is software specifically designed to store, retrieve, and manipulate large amounts of data in an organized and efficient manner.

A) search engine
B) database management system (DBMS)
C) integrated development environment (IDE)
D) productivity suite
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
12
A ____________ is a source of data with which the application can work. Examples are databases, and Excel spreadsheets.

A) data source
B) table copy
C) binding source
D) dataset
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
13
When specifying a data type for the columns in a database table, the data types you can choose from are provided by the ____________.

A) DBMS
B) programming language
C) computer manufacturer
D) compiler
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
14
A ____________ is a set of individual controls that are bound to the columns in a single row. For example, it might display multiple data items for a single student.

A) Details view
B) Multi-viewer
C) Column browser
D) Row navigator
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
15
When an application runs for the first time, Visual Studio copies the database file from the project folder to the project's ____________, which is the bin/Debug folder.

A) data folder
B) table folder
C) output folder
D) hidden folder
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
16
____________ is automatically installed on your system when you install Visual Studio.

A) Oracle
B) DB2
C) MySQL
D) Microsoft SQL Server Express Edition
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
17
A ____________ gets a copy of a table from the table adapter and keeps the copy of the table in memory.

A) record locker
B) data source
C) table copier
D) dataset
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
18
A database management system stores data in a ____________ .

A) text file
B) binary file
C) database
D) source file
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
19
A ____________ is a user interface control that is connected to a data source.

A) table control
B) data-bound control
C) UI data-viewer
D) database module
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
20
Each _________ in a table holds an individual piece of information about all items in the table.

A) tier
B) row
C) column
D) block
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
21
In SQL, the ____________ requires that both search criteria be true in order for a row to be qualified as a match.

A) Or operator
B) Also keyword
C) & character
D) And operator
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
22
The ____________ identifies a column from the table to display in a ListBox control.

A) ShowColumn property
B) column name
C) DisplayMember property
D) DataSource property
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
23
In SQL, the ____________ can be used to search for a substring.

A) Sub method
B) Contains statement
C) Who instruction
D) Like operator
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
24
When you use the ____________ in a Select statement, only the rows that meet the search criteria are returned.

A) Ask keyword
B) Where clause
C) ? operator
D) Find expression
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
25
In SQL, you use keywords to construct statements, which are also known as ____________.

A) queries
B) expressions
C) determinants
D) solutions
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
26
SQL, which stands for ____________, is a standard language for working with database management systems.

A) simultaneous query logic
B) structured query language
C) sequential query language
D) standard quasi language
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
27
In SQL, the ____________ is used as a wildcard character, and can be used to represent any sequence of zero or more characters.

A) ^ symbol
B) Wild operator
C) % symbol
D) * character
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
28
The ____________ identifies the table from which the data-bound control will get its data.

A) DataSource property
B) Table property
C) primary key
D) DisplayMember property
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
29
In SQL, the ____________ calculates the average value in a particular column.

A) Average function
B) # symbol
C) Avg function
D) SQL_Average statement
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
30
When working with data-bound controls on multiple forms, you can make sure that a dataset contains a current copy of the data by calling the table adapter's ____________.

A) Sync method
B) Refresh method
C) Fill method
D) Clear method
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
31
In SQL, strings are enclosed in ____________.

A) single quotes
B) underscores
C) asterisks
D) brackets
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
32
In SQL, you use the ____________ to retrieve the rows in a table.

A) Read statement
B) Get expression
C) Select statement
D) Row keyword
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
33
If you wish to sort the results of an SQL Select query, you can use the ____________.

A) Order By clause
B) List keyword
C) Index method
D) @ operator
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
34
SQL provides the ____________ for determining the number of matching rows in a table.

A) Rows function
B) Count function
C) Max function
D) Volume function
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
35
In an SQL statement, a query parameter variable begins with the ____________.

A) param keyword
B) var operator
C) @ symbol
D) ref clause
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
36
A(n) ____________ is an SQL statement stored in a table adapter object, which can be executed simply by calling a method.

A) dataset macro
B) columnar directive
C) table adapter query
D) referenced subroutine
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
37
When you click on the ____________ in a data-bound control, a tasks panel will appear, giving you a number of options you can perform.

A) options check box
B) smart tag
C) view button
D) taskbar
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
38
A ____________ is a file, ending with the .xsd extension, which describes the contents of a dataset.

A) schema definition file
B) extensible schema data file
C) extended source file
D) data exclusion file
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
39
When developing applications that work with an intensive amount of data, most developers prefer to use a database management system.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
40
If an application needs to store only a small amount of data, sequential and binary files are efficient and easy to use.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
41
Data stored in databases is organized into one or more tables.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
42
When you make changes to a database table in one form, the changes automatically appear in other forms that connect to the same table using their own datasets.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
43
A .NET application requires a set of special components that let it connect to, and work with, a database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
44
When you use Visual Studio to create a database, the database file will be created in the project folder.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
45
When you place a data-bound control on a form, keep in mind that Visual Studio does not automatically generate the code needed for the control to display any data from the database table.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
46
Rather than displaying multiple rows at once, a Details view lets the user see one row at a time.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
47
Each column in a table must have a name.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
48
SQL is a general purpose programming language, which can be used to write applications.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
49
The application handles the mechanical details reading of, writing of, and searching for data in a database.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
50
When you create a database table, you must specify a data type for each column.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
51
Each subsequent time an application runs, it connects to the copy of the database in the output folder, rather than the project folder.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
52
Rather than retrieving or manipulating the data directly, applications send instructions to the DBMS, and the DBMS carries out those instructions and sends the results back to the application.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
53
Data stored in a database table's column is divided into tables.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
54
Data-bound controls automatically display data from a data source and can be used to modify the data they are bound to.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
55
To bind a ListBox control to a column, you must set two of the controls properties: DataSource and DisplayMember.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
56
It is possible to change the type of control that a column is bound to in a Details view.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
57
Data stored in a database table is organized into rows and columns.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
58
The table row designated as the primary key must hold a unique value for each column.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
59
The table column designated as the primary key must hold a unique value for each row.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
60
There are numerous DBMSs in use today, and Visual C# can interact with many of them.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
61
In SQL, if you need to include a single quote as part of a string, simply write two consecutive single quotes in its place.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
62
SQL uses database mnemonics to construct statements, which are also known as table adapter queries.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
63
The equal to and not equal to operators in SQL are different from those in C#.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
64
SQL provides several functions for performing calculations.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
65
In SQL, the asterisk symbol is used as a wildcard to represent a single character.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
66
The Not operator can be used in SQL to disqualify a character pattern in a search criteria.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
67
The Desc operator can be used to sort the results of an SQL Select query in descending order.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
68
You can add your own SQL queries to a table adapter and call them from your C# code.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
69
SQL does not support relational operators.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 69 في هذه المجموعة.