All Downloads are FREE. Search and download functionalities are using the official Maven repository.

freemarker.template.common.xml.query.ftl Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
	
  	
      
<#list tableInfo.columnLists as colm>
    <#if colm??>
        <#if colm.javaDataType = 'String'><#else>
            AND ${colm.columnName} = ${'#{'}${colm.javaColumnName}}
        
    

      
  	

    
        SELECT
    <#list tableInfo.columnLists as colm>
    <#if colm??>
        <#if colm_has_next>
            ${colm.columnName?upper_case},
        <#else>
            ${colm.columnName?upper_case}
        
    
    
    

    
        SELECT COUNT(*)
    

  	
  	
		FROM
			 ${tableInfo.tableName}
		
  	

	
	

	
	




© 2015 - 2024 Weber Informatics LLC | Privacy Policy