क्वेरी के भीतर गतिशील तालिका नामों का उपयोग तैयार किए गए विवरण
, संयोजन के लिए MySQL में भी फ़ंक्शन concat
. है
SET @id := '47';
SET @table := concat(@id,'_2013_2014_voucher');
set @qry1:= concat('select * from ',@table);
prepare stmt from @qry1 ;
execute stmt ;
आप इसे डिलीट क्वेरी के लिए भी कर सकते हैं