Skip to main content
Question

whether the A360 Database command support the Query which applies substring to any column(establishing excel as DB) Example SELECT SUBSTRING([COLUMN],1,5) FROM [Sheet1$$]

  • March 21, 2022
  • 2 replies
  • 54 views

whether the A360 Database command support the Query which applies substring to any column(establishing excel as DB) Example SELECT SUBSTRING([COLUMN],1,5) FROM [Sheet1$$]

2 replies

Tamil Arasu10
Most Valuable Pathfinder
Forum|alt.badge.img+18
  • Most Valuable Pathfinder
  • March 21, 2022

Hi @Karthikeyan Palani​ ,

 

Yes, Supported.

 

Example: SELECT SUBSTRING(CustomerName, 1, 5) AS ExtractString

FROM Customers;

 

 


  • Author
  • Cadet | Tier 2
  • March 22, 2022

i tried the same established excel as database and called the substring query it is taking indefinite time to execute the query