Advanced Search

Here are a few examples of how you can use the search feature:

Entering this and that into the search form will return results containing both "this" and "that".

Entering this not that into the search form will return results containing "this" and not "that".

Entering this or that into the search form will return results containing either "this" or "that".

Search results can also be filtered using a variety of criteria. Select one or more filters below to get started.

Assuming return is required, the following 184 results were found.

  1. MySQL Oracle equivalentshttps://joellipman.com/articles/else/database/mysql-oracle-equivalents.html

    that I need in Oracle: Objective MySQL Oracle - See if a table exists SHOW TABLES Select table_name from sys.dba_tables - Return a specific number of rows SELECT * FROM table1 LIMIT 0, 10 SELECT * FROM table1 WHERE ROWNUM

    • Type: Article
    • Author: Joel Lipman
    • Category: Databases
    • Language: en-GB
  2. Convert a delimited string to tablehttps://joellipman.com/articles/else/database/convert-a-delimited-string-to-table.html

    note to show you how to convert a given comma delimited string into a database table: Given: "Title,Forenames,Surname" Return: ID Value ------ ---------------- 1 Title 2 Forenames 3 Surname Note the below example omits the ID column and just leaves...

    • Type: Article
    • Author: Joel Lipman
    • Category: Databases
    • Language: *
  3. Php convert filesizes to bytes kb mb gbhttps://joellipman.com/articles/cms/website-development/php/php-convert-filesizes-to-bytes-kb-mb-gb.html

    number_format($bytes / 1024, 2) . ' KB'; } elseif ($bytes > 1) { $bytes = $bytes . ' bytes'; } else { $bytes = '0 bytes'; } return $bytes; } Inline without a function Source: Joes Brain: http://www.joellipman.com if ($this_file_size >= 1073741824)...

    • Type: Article
    • Author: Joel Lipman
    • Category: Personal Home Page
    • Language: en-GB
  4. Convert Decimal (Person Days) to Time in Excelhttps://joellipman.com/component/content/article/convert-decimal-person-days-to-time-in-excel.html?catid=110&Itemid=165

    match the results above. The second formula is converting person days into hours and then dividing by 24 (which should return the same decimal number).

    • Type: Article
    • Author: Joel Lipman
    • Category: Excel
    • Language: en-GB
Results 181 - 184 of 184