forums › forums › SQLyog › SQLyog: Bugs / Feature Requests › Regression: Align Column Aliases
Tagged: alias, column, regression
- This topic is empty.
Viewing 1 reply thread
-
AuthorPosts
-
-
August 30, 2016 at 4:17 pm #13559LCValentineMember
As recently as version 10, the SQL Formatter would align column aliases (up to maybe 20 chars) within a SELECT.
I now have version 12, and I no longer see this feature.
Is it hidden somewhere in the preferences?
Version 10 format:
SELECTe.eid AS enterprise_id,cci.SegmentID AS segment_id,340 AS transaction_type,cci.AssignmentDate AS transaction_time,cci.OrderID AS order_id,1 AS units,ni.TelephoneNumber AS telnum,90603 AS product_idFROM table1 eJOIN table2 cciON e.eid = cci.CustomerIDAND cci.DeletionDate = 0JOIN table3 niON cci.TnID = ni.TnIDWHERE e.partnerID IN( 12345, 23456 );Version 12 format (regression):SELECTe.eid AS enterprise_id,cci.SegmentID AS segment_id,340 AS transaction_type,cci.AssignmentDate AS transaction_time,cci.OrderID AS order_id,1 AS units,ni.TelephoneNumber AS telnum,90603 AS product_idFROMtable1 eJOIN table2 cciON e.eid = cci.CustomerIDAND cci.DeletionDate = 0JOIN table3 niON cci.TnID = ni.TnIDWHERE e.partnerID IN (1001041, 1008725); -
September 8, 2016 at 12:46 pm #35770Sibin A SModerator
Hi,
We had removed this option from SQLyog v8.7 as there were issues with that implementation. The latest version does not include that option and is a completely rewritten to include all types of SQL statements.
You may also refer our blog for the same under the version 8.7, here >> http://sqlyogkb.webyog.com/article/348-version-history-2010
Regards,
Sibin
-
-
AuthorPosts
Viewing 1 reply thread
- You must be logged in to reply to this topic.