फ़ॉर्मला कितना भारी है, इस पर निर्भर करते हुए, आप एक सबक्वेरी का उपयोग कर सकते हैं:
select inner.*, times_two * 2 from
(select mycol * 2 as times_two from table) sub
या गणना को फिर से लिखें:
select mycol * 2, mycol * 2 * 2 from table
फ़ॉर्मला कितना भारी है, इस पर निर्भर करते हुए, आप एक सबक्वेरी का उपयोग कर सकते हैं:
select inner.*, times_two * 2 from
(select mycol * 2 as times_two from table) sub
या गणना को फिर से लिखें:
select mycol * 2, mycol * 2 * 2 from table