/**
 * The equivalent of a SQL field.
 *
 * @param {string} taget The name of the owner table
 **/
Sql.Field = new Class
({
	Extends: Sql.Expr
	,Tag: 'sql-field'
	,Properties:
	{
		name:
		{
			type: String
			,value: null
		},
		target:
		{
			type: String
			,value: null
		}
	}

	,render: function (batch)
	{
		var sql = (this.target) ? '`' + this.target + '`.' : '';	
		return sql + '`' + this.name + '`';
	}
});