AWK script

Поиск
Список
Период
Сортировка
От Atif Jung
Тема AWK script
Дата
Msg-id i2ud1c6b9c51004130630o7ff6aca9wc5c3724d82c40553@mail.gmail.com
обсуждение исходный текст
Ответы Re: AWK script  (glenn <glenn@davy.net.au>)
Список pgsql-novice
I've been tasked with writing a script which will automatically update our exisitng INFORMIX code to include POSTGRES compliant equivalent code. My awk skills are pretty basic to say the least, but  I've managed to write some of the rules in an awk script, but am having difficulty with the following 
 
 
CHANGE INFORMIX CODE
 
ORDER BY var[x,y];
 
TO POSTGRES CODE
 
ORDER BY SUBSTRING(var FROM x FOR y);
 
my problem is var[x,y] is completely variable. How do I check for that in AWK/SED? Is it even possible?
 
Thanks
 

В списке pgsql-novice по дате отправления:

Предыдущее
От: Jasen Betts
Дата:
Сообщение: Re: Partitioning for query performance
Следующее
От: Atif Jung
Дата:
Сообщение: Re: AWK script