Re: SQL syntax
Hi,As it looks from your query that you want to jointly get comments with table one records.. Use query like following .. It is just to give you hint.. You can achieve this by joins too.CREATE...
View ArticleRe: SQL syntax
CREATE PROCEDURE sp_select_download_audiofiles_proofer (@pemailid varchar(45), @pdt datetime) AS BEGIN select * from tb_documents where Proofer_emailid=@pemailid and Assigned_dt=@pdt and (Stats Like...
View ArticleSQL syntax
Hi All,I would like to write a stored procedure which will be used to get data from to tables....But I am not able to do it... can anyone help me out........CREATE DEFINER=`mtapp`@`%` PROCEDURE...
View ArticleRe: SQL syntax
I dont why you have used Definer. can you please explain.And as for the procedure, the above replies are accurate. A good practice would perhaps be to use modes. As in, iMode=1, iMode=2 so on.Purpose...
View Article