Definition of Select

Babylon English Dictionary
chosen, picked out; choice, superior, prime; discriminating, choosy, picky
choose, pick out
Search Dictionary
Select Definition from Arts & Humanities Dictionaries & Glossaries
English-Latin Online Dictionary
eligo, electus, adopto
Select Definition from Language, Idioms & Slang Dictionaries & Glossaries
Webster's Revised Unabridged Dictionary (1913)
(v. t.)
To choose and take from a number; to take by preference from among others; to pick out; to cull; as, to select the best authors for perusal.
  
(a.)
Taken from a number by preferance; picked out as more valuable or exellent than others; of special value or exellence; nicely chosen; selected; choice.
  
Webster's Revised Unabridged Dictionary (1913), edited by Noah Porter. About
hEnglish - advanced version

select
\se*lect"\ (?), a. [l. selectus, p. p. of seligere to select; pref. se- aside + levere to gather. see legend.] taken from a number by preferance; picked out as more valuable or exellent than others; of special value or exellence; nicely chosen; selected; choice. a few select spirits had separated from the crowd, and formed a fit audience round a far greater teacher.
select
\se*lect"\, v. t. [imp. & p. p. selected; p. pr. & vb. n. selecting.] to choose and take from a number; to take by preference from among others; to pick out; to cull; as, to select the best authors for perusal. "one peculiar nation to select." the pious chief a hundred youths from all his train selects.
select
adj
1. of superior grade; "choice wines"; "prime beef"; "prize carnations"; "quality paper"; "select peaches" [syn: choice, prime(a) , prize, quality]


2. selected or chosen for special qualifications; "the blue-ribbon event of the season" [syn: blue-ribbon(a) ]
v : pick out, select, or choose from a number of alternatives; "take any one of these cards"; "choose a good husband for your daughter"; "she selected a pair of shoes from among the dozen the salesgirl had shown her" [syn: choose, take, pick out]





  similar words(1) 



 select vestry 
JM Welsh <=> English Dictionary
Dethol = v. to pick, to select
Dewisol = a. choice, desirable, select
Dyethol = v. to select
Ethol = v. to select, to choose, n. selection, choice, a. select
Gorddethol = a. very select
Goretholi = v. to select nicely
Anagram
      elects
WordNet 2.0

Verb
1. pick out, select, or choose from a number of alternatives; "Take any one of these cards"; "Choose a good husband for your daughter"; "She selected a pair of shoes from among the dozen the salesgirl had shown her"
(synonym) choose, take, pick out
(hypernym) decide, make up one's mind, determine
(hyponym) empanel, impanel, panel
(derivation) choice, selection, option, pick

Adjective
1. of superior grade; "choice wines"; "prime beef"; "prize carnations"; "quality paper"; "select peaches"
(synonym) choice, prime(a), prize, quality
(similar) superior
2. selected or chosen for special qualifications; "the blue-ribbon event of the season"
(synonym) blue-ribbon(a)
(similar) superior
Select Definition from Business & Finance Dictionaries & Glossaries
MONASH Marketing Dictionary
acronym for Situation analysis; Explicit statement of the problem; Laying out the research design and collecting data; Evaluating the data and making a decision; Creating a plan to implement the decision and Testing the correctness of the decision - a six-step approach to the process of marketing research.
2004 (c) Copyright & Reprint Courtesy of the Dept. of Marketing, Faculty of Business and Economics, Monash University; edited by Mr. Don Bradmore.
Company Info: Ticker, Name, Description
Select Comfort Corporation
Exchange: Nasdaq
Manufactures and markets premium quality, premium priced, innovative air beds, foundations and sleep accessories, including high quality mattress pads with zoned heating and specialty pillows, all of which are hypoallergenic and designed to provide comfort and better quality sleep; And distributes products through
Select Medical Corporation
Exchange: Nasdaq
Provides long-term acute hospital services, physical, occupational and speech rehabilitation services; And owns and operates long-term acute care hospitals.
SELECT MEDIA COMM INC
Exchange: OTCBB
Not Available
Select Sector SPDR Fund - Basic Industries
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Energy Select Sector
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Financial
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Industrial
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Technology
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Consumer Staples
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Utilities
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Consumer Services
Exchange: AMEX
Not Available
Select Sector SPDR Fund - Cyclical/Transportation
Exchange: AMEX
Not Available
Select Therapeutics, Inc.
Exchange: AMEX
Holding company with subsidiaries which research and develop pharmaceutical products for the treatment of infectious diseases and certain types of cancer; And develop, manufacture and sell in-vitro diagnostic kit for the detection of gonorrhea. new registrant.
Select Definition from Science & Technology Dictionaries & Glossaries
Abbreviation Airbus A340
Select, Selected, Selector, Selection
Select Definition from Computer & Internet Dictionaries & Glossaries
JDK Doc(JAVA)
- Static variable in class javax.swing.text.html.HTML.Tag 
public static final HTML.Tag SELECT
- Method in class java.awt.Choice 
public void select (String  str)
Sets the selected item in this Choice menu to be the item whose name is equal to the specified string. If more than one item matches (is equal to) the specified string, the one with the smallest index is selected.Parameters: str - the specified stringSee Also:  getSelectedItem() , getSelectedIndex()
- Method in class java.awt.Choice 
public void select (int pos)
Sets the selected item in this Choice menu to be the item at the specified position.Parameters: pos - the positon of the selected item.Throws: IllegalArgumentException - if the specified position is invalid.See Also:  getSelectedItem() , getSelectedIndex()
- Method in class java.awt.List 
public void select (int index)
Selects the item at the specified index in the scrolling list.Parameters: index - the position of the item to select.See Also:  getSelectedItem() , deselect(int) , isIndexSelected(int)
- Method in class java.awt.TextComponent 
public void select (int selectionStart, int selectionEnd)
Selects the text between the specified start and end positions. This method sets the start and end positions of the selected text, enforcing the restriction that the start position must be greater than or equal to zero. The end position must be greater than or equal to the start position, and less than or equal to the length of the text component's text. The character positions are indexed starting with zero. The length of the selection is endPosition-startPosition, so the character at endPosition is not selected. If the start and end positions of the selected text are equal, all text is deselected. If the caller supplies values that are inconsistent or out of bounds, the method enforces these constraints silently, and without failure. Specifically, if the start position or end position is greater than the length of the text, it is reset to equal the text length. If the start position is less than zero, it is reset to zero, and if the end position is less than the start position, it is reset to the start position.Parameters: selectionStart - the zero-based index of the first character to be selected. - the zero-based end position of the text to be selected. The character at selectionEnd is not selected.selectionEnd - the zero-based end position of the text to be selected. The character at selectionEnd is not selected.See Also:  setSelectionStart(int) , setSelectionEnd(int) , selectAll()
- Method in class javax.swing.text.JTextComponent 
public void select (int selectionStart, int selectionEnd)
Selects the text found between the specified start and end locations. This call is provided for backward compatibility. It is routed to a call to setCaretPosition followed by a call to moveCaretPostion. The preferred way to manage selection is by calling those methods directly.Parameters: selectionStart - the start position of the text >= 0 - the end position of the text >= 0selectionEnd - the end position of the text >= 0See Also:  setCaretPosition(int) , moveCaretPosition(int)
DW and OLAP terms
The Transact-SQL statement used to return data to an application or another Transact-SQL statement, or to populate a cursor. The SELECT statement returns a tabular result set consisting of data that is typically extracted from one or more tables. The result set contains only data from rows that match the search conditions specified in WHERE or HAVING clauses.
Select Definition from Encyclopedia Dictionaries & Glossaries
Wikipedia English - The Free Encyclopedia
Select or SELECT may refer to:
  • Select (album), an album by Kim Wilde
  • Select (magazine), a British music magazine
  • Select (SQL), a keyword in SQL
  • select (Unix), a system call (in sys/select.h or unistd.h) for polling multiple file descriptors
  • <select></select>, an HTML element
  • Cable select, a setting on ATA devices that allows position on the cable to determine the role of a drive
  • quick select, an algorithm to select the kth-smallest element of an array
  • Select Live, New Zealand's C4 music program
  • Shell Select, a chain of convenience stores owned by Royal Dutch Shell and located in most Shell stations
  • Select Citywalk, a shopping mall in Delhi, India
  • MTV Select, a television program
  • SELECT (Electrical Contractors' Association of Scotland)
  • SELECT Sport A/S, a Danish sports equipment manufacturer

See more at Wikipedia.org...
"SELECT" redirects here. For the trade association, see SELECT (Electrical Contractors' Association of Scotland).
The SQL SELECT statement returns a result set of records from one or more tables.

See more at Wikipedia.org...
© This article uses material from Wikipedia® and is licensed under the GNU Free Documentation License and under the Creative Commons Attribution-ShareAlike License
Select Definition from Society & Culture Dictionaries & Glossaries
The Scotch Whisky by SDA v.4.20
Premier Select 11 YO, Single Speyside Malt Scotch Whisky
For: The Master of Malt (Scotland)
Scotch Select Fine Old, Blended Scotch Whisky
By: D. A. Company (Glasgow), (Glasgow, Scotland)
Select Definition from Entertainment & Music Dictionaries & Glossaries
English to Federation-Standard Golic Vulcan
dvel-tor