Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
SQL
declare @cnt int set @cnt=(select MAX(SUBSTRING(Account_Admin.Account_Id,2,LEN(Account_Admin.Account_Id)))+1 from Account_Admin)

DECLARE @Account_Id  VARCHAR(20)
SET @Account_Id = 'A'+CAST(@cnt as varchar)




what is the code to convert it into MYSQL
Posted
Comments
Sandeep Mewara 11-Sep-12 10:04am    
Did you try by yourself?

What error you get when you put he same query in MySQL?

1 solution

SQL
declare @cnt int 
select @cnt =MAX(SUBSTRING(Account_Admin.Account_Id,2,LEN(Account_Admin.Account_Id)))+1 from Account_Admin

DECLARE @Account_Id  VARCHAR(20)
SET @Account_Id = 'A'+CAST(@cnt as varchar)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900