show/hide this revision's text 3 added 67 characters in body

I have a problem writing a SQL statement for both Oracle and MS SQL server. I'd like to write the SQL so that it works in both. I don't want to have to mess around with setting a database type variable .and switching

I have a column of item_names course names that have values like this:

9RA923.2008W

1223.200710

P0033330.200901

I want to select everything right of the ".".

In oracle I am using this:

SELECT DISTINCT substr(bom_course_id, instr(bom_course_id, '.')+1) FROM ...

In MSSQL Server I could use this:

SELECT DISTINCT SUBSTRING(bom_course_id, CHARINDEX('.', bom_course_id)+1 ) FROM ...

Does anyone have a clever way that I can select the last 6 characters after the dot, using the same SQL statement in either Oracle or MS SQL.

Unfortunately, I won't know how many characters there will be before or after the "." It's not completely numeric either, I can't count on only numbers.

I really wish there was an SQL standard.

show/hide this revision's text 2 Updated to make the problem clearer

I have a problem writing a SQL statement for both Oracle and MS SQL server. I'd like to write the SQL so that it works in both. I don't want to have to mess around with setting a database type variable.

I have a column of item_names that have values like this:92393923.200811 00033330.200901

9RA923.2008W

1223.200710

P0033330.200901

I want to select everything right of the ".".

In oracle am using this:

SELECT DISTINCT substr(bom_course_id, instr(bom_course_id, '.')+1) FROM ...

In MSSQL I could use this:

SELECT DISTINCT SUBSTRING(bom_course_id, CHARINDEX('.', bom_course_id)+1 ) FROM ...

Does anyone have a clever way that I can select the last 6 characters, using the same SQL statement in either Oracle or MS SQL.

Unfortunately, I won't know how many characters there will be before or after the "." It's not completely numeric either, I can't count on only numbers.

show/hide this revision's text 1

Platform Neutral SQL Statement for INSTR or CHARINDEX

I have a problem writing a SQL statement for both Oracle and MS SQL server. I'd like to write the SQL so that it works in both. I don't want to have to mess around with setting a database type variable.

I have a column of item_names that have values like this: 92393923.200811 00033330.200901

I want to select everything right of the ".".

In oracle am using this:

SELECT DISTINCT substr(bom_course_id, instr(bom_course_id, '.')+1) FROM ...

In MSSQL I could use this:

SELECT DISTINCT SUBSTRING(bom_course_id, CHARINDEX('.', bom_course_id)+1 ) FROM ...

Does anyone have a clever way that I can select the last 6 characters, using the same SQL statement in either Oracle or MS SQL.