Sql 2005

Mu online season 21 - grand opening

-Luke-

LOMCN Veteran
Veteran
May 9, 2010
1,508
55
135
How do i search with it? I knew i could do it on 2000 but 2005 ?

T
 

mStation

Golden Oldie
Golden Oldie
Oct 29, 2003
2,042
69
235
♫♪♫ ♦♥♠♣ ♀♂♀
do you mean searching within a table?

for example if i am in std_items table and i want to search item apple i can make a new query with
SELECT * FROM TBL_STDITEMS WHERE (FLD_ID = 1)
this will give you as result the first item in the std_item table..
if you are searching an item name you can change the query to something like
SELECT * FROM TBL_STDITEM WHERE (FLD_NAME = 'apple')
this will give you the row details of the item called apple..

is this what you are asking for? in case i can give you all sorts of queries which can be made.
 
Upvote 0