-- Some comments here
CREATE EXTERNAL TABLE IF NOT EXISTS IMPS
(
CLICKS INT COMMENT 'Number of raw clicks for this impression.',
VIEWS INT COMMENT 'Number of raw views for this impression'
我有一個簡單的腳本,我希望用戶能夠指定分隔符: #!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
my $sep = "&";
GetOptions('sep:s' => \$sep);
my @list = ('a','b','c');
print join($sep,@list);
print "\n";