Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8727109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:22:43+00:00 2026-06-13T08:22:43+00:00

There is a column AppendedData in Route table . It stores data in this

  • 0

There is a column “AppendedData” in “Route” table . It stores data in this format

-------------
ID |  AppendedData
1  |  abc : xyz
2  |  123a : gvk
--------------

What I want is to write a search query over this “AppendedData” in where clause by spliting/substring it in two parts . The part before “:” is to be used in matching the values.

The current application that i am working is an old one so I can’t go for writing an stored procedure . So what I am left is writing query in c# and executing it and returning a datable. So how can I do this in c#??

I was trying this in sql server till now it is returning the second part ie, after “:”.

my query:

select SUBSTRING(AppendedData,CHARINDEX(':',AppendedData)+1, 100) from  route
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T08:22:44+00:00Added an answer on June 13, 2026 at 8:22 am

    Try this,

    In SQL

    declare @route  TABLE
    (  
        [ID] [int] NOT NULL,  
        [AppendedData] varchar (50) NOT NULL  
    )   
    
    insert into @route values (1, 'abc : xyz') 
    insert into @route values (2, '123a : gvk') 
    
    select SUBSTRING(AppendedData,CHARINDEX(':',AppendedData)+1, 100) from @route where             SUBSTRING(AppendedData,1, CHARINDEX(':', AppendedData)-1) = '123a'  
    

    In C#

    var lstRoutes = new List<Route>
    {
        new Route {ID = 1, AppendedData = "abc : xyz"},
        new Route {ID = 2, AppendedData = "123a : gvk"},
                                       };
    var result = lstRoutes.Where(r1 => r1.AppendedData.Split(':')[0].Trim() == "abc")
                .Select(r => new { r.ID, right = r.AppendedData.Split(':')[1] });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I want to create table ABC in which there is column namely UniqueAddress.
I have this table: ID(INT) DATE(DATETIME) Under the DATE column there are a lot
There is a column that exists in 2 tables. In table 1, this column
In my table definition, there is a column with int data type. If a
In the data table there is column that is composite date that has the
I have following table structure there is column vid in that i want entry
I am importing data from csv file, sometimes there are column headers and some
I have a table where there is a column of type 'text'. I know
I have a database table named 'student' in which there is one column named
In my grid view there is column which contain with string data type. Some

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.