英文字典中文字典Word104.com



中文字典辭典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   







請輸入英文單字,中文詞皆可:

select    音標拼音: [səl'ɛkt]
v. 選擇,選舉,選拔,挑選
a. 當選的,挑選的,挑剔的,特別的

選擇,選舉,選拔,挑選當選的,挑選的,挑剔的,特別的

select
n 選擇


select
1 對部份選抽擇比


select
選擇 SEL,SLT

select
選擇

select
adj 1: of superior grade; "choice wines"; "prime beef"; "prize
carnations"; "quality paper"; "select peaches" [synonym:
{choice}, {prime(a)}, {prize}, {quality}, {select}]
2: selected or chosen for special qualifications; "the blue-
ribbon event of the season" [synonym: {blue-ribbon(a)}, {select}]
v 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}, {select}, {pick out}]

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.
[1913 Webster]

A few select spirits had separated from the crowd, and
formed a fit audience round a far greater teacher.
--Macaulay.
[1913 Webster]


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."
--Milton.
[1913 Webster]

The pious chief . . .
A hundred youths from all his train selects. --Dryden.
[1913 Webster]

183 Moby Thesaurus words for "select":
accepted, adopted, advert to, allude to, analyze, appoint,
appointed, approved, assign, be taken as, best, better, carried,
champion, choice, choose, choose out, chosen, clannish, cliquish,
closed, contradistinguish, cream, cull, dainty, decide between,
delicate, demarcate, demark, denominate, denote, designate,
designated, determine, differentiate, discriminate, discriminating,
distinguish, divide, draw the line, elect, elected,
elected by acclamation, elegant, elite, emblematize, embraced,
espoused, ethnocentric, excellent, exceptional, excerpt, excluding,
exclusive, exclusory, exquisite, extract, fat, favored, favorite,
figure, fine, finest, finger, first-class, first-rate, fix, flower,
for the best, glean, greatest, handpick, handpicked, inadmissible,
indicate, insular, limited, make a selection, mark,
mark the interface, matchless, mention, name, named, narrow,
nominate, nominated, nonesuch, nonpareil, opt for, optimal,
optimum, ordain, ordinate, paragon, paramount, parochial, passed,
peerless, pick, pick out, picked, pin down, point at, point out,
point to, preclusive, prefer, preferable, preferred, prescriptive,
preventive, prime, privileged, prize, prohibitive, queen,
quintessence, quintessential, rare, ratified, recherche, refer to,
restricted, restrictive, screen, screen out, screened, seclusive,
segregate, segregative, selected, selective, separate, separative,
set, set a limit, set apart, set off, sever, severalize, sieve,
sieve out, sift, sift out, signify, single out, snobbish, snobby,
sort, sort out, special, specialize, specify, split hairs,
stand for, state, stigmatize, stipulate, subdivide, subtilize,
superior, superlative, supreme, surpassing, symbol, symbolize, tab,
take, the best, the best ever, the tops, the very best, top,
typify, unanimously elected, unmatchable, unmatched, unparalleled,
unsurpassed, very best, winnow, xenophobic



安裝中文字典英文字典查詢工具!


中文字典英文字典工具:
選擇顏色:
輸入中英文單字

































































英文字典中文字典相關資料:
  • sql - MySQL SELECT only not null values - Stack Overflow
    SELECT * FROM ( SELECT col1 AS col FROM yourtable UNION SELECT col2 AS col FROM yourtable UNION -- UNION SELECT coln AS col FROM yourtable ) T1 WHERE col IS NOT NULL And I agre with Martin that if you need to do this then you should probably change your database design
  • sql - How to do a Select in a Select - Stack Overflow
    SELECT * FROM YourTable y WHERE NOT EXISTS (SELECT * FROM OtherTable o WHERE y Ref = o Ref) SELECT * FROM YourTable WHERE Ref NOT IN (SELECT Ref FROM OtherTable WHERE Ref IS NOT NULL) SELECT y * FROM YourTable y LEFT OUTER JOIN OtherTable o ON y Ref = o Ref WHERE o Ref IS NULL
  • sql - select * vs select column - Stack Overflow
    Select column is more performatic of select *, but if you is developing an oriented object system, then you will like use object properties and you can need a properties in any part of apps, then you will need write more methods to get properties in special situations if you don't use select * and populate all properties
  • Is there an onSelect event or equivalent for HTML lt;select gt;?
    @T J Crowder You are correct -- not sure what I was thinking when I wrote the second half I've deleted the original comment and for the purpose of not confusing others, here is the original comment (please note that the first half is correct, and the second part is wrong): This will not work as expected for the first option which has index 0: 0 is false in JS so doSomething() will not be
  • sql server - INSERT INTO vs SELECT INTO - Stack Overflow
    The simple difference between select Into and Insert Into is: --> Select Into don't need existing table If you want to copy table A data, you just type Select * INTO [tablename] from A Here, tablename can be existing table or new table will be created which has same structure like table A
  • sql server - SQL select from a select query - Stack Overflow
    I want to do a select request that perform a first select and then use that selection to perform a second select I made a 1st version using a temp table but I would like to know if there is a way to do it without the temporary table my code with the temp table is like :
  • Is there an lt;option gt; separator for lt;select gt; elements?
    To build upon Jasneet's answer: Style the background of a disabled option as gray (Jasneet); Add disabled options above and below to pad the separator
  • How can I set the default value for an HTML lt;select gt; element?
    Learn how to set the default value for an HTML <select> element using JavaScript or HTML techniques
  • sql - Case in Select Statement - Stack Overflow
    Using a SELECT statement with a searched CASE expression Within a SELECT statement, the searched CASE expression allows for values to be replaced in the result set based on comparison values The following example displays the list price as a text comment based on the price range for a product
  • HTML Form: Select-Option vs Datalist-Option - Stack Overflow
    Think of it as the difference between a requirement and a suggestion For the select element, the user is required to select one of the options you've given For the datalist element, it is suggested that the user select one of the options you've given, but he can actually enter anything he wants in the input





中文字典-英文字典  2005-2009

|中文姓名英譯,姓名翻譯 |简体中文英文字典