Skip to main content
Cadet | Tier 2
March 21, 2022
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
  • 94 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
    Most Valuable Pathfinder
    March 21, 2022

    Hi @Karthikeyan Palani​ ,

     

    Yes, Supported.

     

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

    FROM Customers;

     

     

    _Tamil_
    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