Next
/
Previous
/ Index
/ TCC Help System
/ Publications
/ Site map
/ NM Tech homepage
Searching multiple Sybase tables
|
|
If you want to search for items in multiple tables (for
instance, all the Johns in a rolodex table and in a masons table)
this is the way to do it.
At the end of each command press the space-bar or press enter
before continuing the next step.
- Type
select
- Type the name of the columns you displayed after the
search. Separate each column name with a comma.
For instance, if you are searching for John Jones and you
want to know his phone number and his address, so you would type
phone, address
- If you want every column to be returned, type an asterisk.
- Type
from
- Type the name of the first table you are searching, then
type a comma and the name of the second table. If you have more
tables you want to search, add them by typing a comma, then the
table name. There is no limit to the number of tables you can
add.
- Type
where
- Type the name of the column you are searching.
- Type
like
- Type
"
- Type the word(s) you the first item you are searching for,
including any wildcards you need.
- Type
"
- Type the word(s) of the item you are searching for,
including any wildcards you need (see
`Sybase searches when you know part of the data').
- Type
"
- Type
go
- Press Enter.
If there is a value that matches your search, you see the
results from your search and
(1 row affected)
The number may be 2 or 3, or whatever if your search matches more
than one row.
For example, to find all the Johns in Seattle in a table
called rolodex and return all the columns, type
select * from rolodex where name likeJohn%
and city=Seattle go
See also: Searching Sybase databases
Previous: Sybase: computing values from search results
Site map
Index:
Keyword index
to help pages
Help:
New Mexico Tech Computer Center: Help System
TCC Publications
To report a problem: File a ticket
Send mail to the User consultant
on duty or call them at 575-835-5437
Home:
About New Mexico Tech
Maintained by John Shipman, john@nmt.edu;
original by Steve Anderson
Last updated: 1997/06/25 00:32:52 UT
URL: http://www.nmt.edu/tcc/help/db/sybase/search_mult_tables.html
|
|