Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Re: It works, it's fast, and it's scalable!

by joealba (Hermit)
on Jan 25, 2002 at 01:12 UTC ( [id://141336]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    TABLE SEARCH_CLASSIFIEDS
        FILENAME  VARCHAR(40)
        FIRST50CHARS  VARCHAR(50)
        PUB_DATE  DATE
    
  2. or download this
    SELECT FILENAME FROM SEARCH_CLASSIFIEDS
    WHERE FILENAME IN ( filename_list )
    SORT BY FIRST50CHARS
    
  3. or download this
    CREATE TABLE CLS_TMP_$$
        FILENAME  VARCHAR(40)
    NOLOGGING
    
  4. or download this
    SELECT FILENAME FROM SEARCH_CLASSIFIEDS
    WHERE FILENAME IN ( SELECT FILENAME FROM CLS_TMP_$$ )
    SORT BY FIRST50CHARS
    
  5. or download this
    foreach (@files) {
      # INSERT INTO CLS_TMP_$$ values('$_')
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://141336]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-25 18:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found